Struct gdb_command::memory::MemoryObject
source · pub struct MemoryObject {
pub address: u64,
pub data: Vec<u8>,
}
Expand description
MemoryObject
represents raw data in memory.
Fields§
§address: u64
Memory start address
data: Vec<u8>
Memory contents
Implementations§
source§impl MemoryObject
impl MemoryObject
Trait Implementations§
source§impl Clone for MemoryObject
impl Clone for MemoryObject
source§fn clone(&self) -> MemoryObject
fn clone(&self) -> MemoryObject
Returns a copy 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 moresource§impl Debug for MemoryObject
impl Debug for MemoryObject
source§impl Default for MemoryObject
impl Default for MemoryObject
source§fn default() -> MemoryObject
fn default() -> MemoryObject
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for MemoryObject
impl Send for MemoryObject
impl Sync for MemoryObject
impl Unpin for MemoryObject
impl UnwindSafe for MemoryObject
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