pub struct MemoryMapping {
pub qualifier: String,
pub description: String,
pub requires_sync: bool,
pub read_only: bool,
}Expand description
Memory space descriptor for a target platform.
Fields§
§qualifier: StringThe target-specific storage qualifier / address space annotation.
description: StringHuman-readable description of the mapping.
requires_sync: boolWhether this memory space requires explicit synchronisation.
read_only: boolWhether the memory is read-only.
Trait Implementations§
Source§impl Clone for MemoryMapping
impl Clone for MemoryMapping
Source§fn clone(&self) -> MemoryMapping
fn clone(&self) -> MemoryMapping
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MemoryMapping
impl Debug for MemoryMapping
impl Eq for MemoryMapping
Source§impl PartialEq for MemoryMapping
impl PartialEq for MemoryMapping
Source§fn eq(&self, other: &MemoryMapping) -> bool
fn eq(&self, other: &MemoryMapping) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemoryMapping
Auto Trait Implementations§
impl Freeze for MemoryMapping
impl RefUnwindSafe for MemoryMapping
impl Send for MemoryMapping
impl Sync for MemoryMapping
impl Unpin for MemoryMapping
impl UnsafeUnpin for MemoryMapping
impl UnwindSafe for MemoryMapping
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.