pub struct Disassembly {
pub offset: u64,
pub data: Vec<u8>,
pub bbs: HashMap<u64, BasicBlock>,
}
Fields§
§offset: u64
§data: Vec<u8>
§bbs: HashMap<u64, BasicBlock>
Trait Implementations§
Source§impl Debug for Disassembly
impl Debug for Disassembly
Source§impl PartialEq for Disassembly
impl PartialEq for Disassembly
impl Eq for Disassembly
impl StructuralPartialEq for Disassembly
Auto Trait Implementations§
impl Freeze for Disassembly
impl RefUnwindSafe for Disassembly
impl Send for Disassembly
impl Sync for Disassembly
impl Unpin for Disassembly
impl UnwindSafe for Disassembly
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