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