pub enum MemAttr {
StronglyOrdered,
DeviceMemory,
NormalMemory {
outer: Cacheable,
inner: Cacheable,
},
}Expand description
Describes the memory ordering and cacheability of a region
Variants§
Trait Implementations§
impl Eq for MemAttr
impl StructuralPartialEq for MemAttr
Auto Trait Implementations§
impl Freeze for MemAttr
impl RefUnwindSafe for MemAttr
impl Send for MemAttr
impl Sync for MemAttr
impl Unpin for MemAttr
impl UnwindSafe for MemAttr
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