pub(crate) struct ByteInfo<'ctx> {
pub value: Option<Int<'ctx>>,
pub init: bool,
pub nul: Option<bool>,
}Expand description
Per-byte symbolic state at a concrete offset in an allocation.
Fields§
§value: Option<Int<'ctx>>Symbolic value, if tracked.
init: boolWhether the byte has been explicitly written.
nul: Option<bool>NUL knowledge: Some(true) known NUL, Some(false) known non-NUL.
Trait Implementations§
Auto Trait Implementations§
impl<'ctx> !DynSend for ByteInfo<'ctx>
impl<'ctx> !DynSync for ByteInfo<'ctx>
impl<'ctx> !Send for ByteInfo<'ctx>
impl<'ctx> !Sync for ByteInfo<'ctx>
impl<'ctx> Freeze for ByteInfo<'ctx>
impl<'ctx> RefUnwindSafe for ByteInfo<'ctx>
impl<'ctx> Unpin for ByteInfo<'ctx>
impl<'ctx> UnsafeUnpin for ByteInfo<'ctx>
impl<'ctx> UnwindSafe for ByteInfo<'ctx>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more