pub enum UninitializedMemoryAccessReason<Info: BugInfo> {
ReadUnintializedMemoryAddress {
description: String,
address: u64,
},
InstructionWithUninitializedOperand {
instruction: Instruction,
operands: Vec<Info::Value>,
},
}
Variants§
Trait Implementations§
Source§impl<Info: Clone + BugInfo> Clone for UninitializedMemoryAccessReason<Info>
impl<Info: Clone + BugInfo> Clone for UninitializedMemoryAccessReason<Info>
Source§fn clone(&self) -> UninitializedMemoryAccessReason<Info>
fn clone(&self) -> UninitializedMemoryAccessReason<Info>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<Info> Freeze for UninitializedMemoryAccessReason<Info>
impl<Info> RefUnwindSafe for UninitializedMemoryAccessReason<Info>
impl<Info> Send for UninitializedMemoryAccessReason<Info>
impl<Info> Sync for UninitializedMemoryAccessReason<Info>
impl<Info> Unpin for UninitializedMemoryAccessReason<Info>
impl<Info> UnwindSafe for UninitializedMemoryAccessReason<Info>
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