pub struct MemoryInspection {
pub id: u8,
pub owner: String,
pub range: MemoryRange,
pub label: Option<String>,
}Expand description
MemoryInspection
Fields§
§id: u8§owner: String§range: MemoryRange§label: Option<String>Trait Implementations§
Source§impl Clone for MemoryInspection
impl Clone for MemoryInspection
Source§fn clone(&self) -> MemoryInspection
fn clone(&self) -> MemoryInspection
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 moreSource§impl Debug for MemoryInspection
impl Debug for MemoryInspection
Source§impl PartialEq for MemoryInspection
impl PartialEq for MemoryInspection
impl Eq for MemoryInspection
impl StructuralPartialEq for MemoryInspection
Auto Trait Implementations§
impl Freeze for MemoryInspection
impl RefUnwindSafe for MemoryInspection
impl Send for MemoryInspection
impl Sync for MemoryInspection
impl Unpin for MemoryInspection
impl UnsafeUnpin for MemoryInspection
impl UnwindSafe for MemoryInspection
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