pub enum CacheableMemoryAttribute {
NonCacheable = 0,
WriteBackWriteAlloc = 1,
WriteThroughNoWriteAlloc = 2,
WriteBackNoWriteAlloc = 3,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CacheableMemoryAttribute
impl Clone for CacheableMemoryAttribute
Source§fn clone(&self) -> CacheableMemoryAttribute
fn clone(&self) -> CacheableMemoryAttribute
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 CacheableMemoryAttribute
impl Debug for CacheableMemoryAttribute
impl Copy for CacheableMemoryAttribute
Auto Trait Implementations§
impl Freeze for CacheableMemoryAttribute
impl RefUnwindSafe for CacheableMemoryAttribute
impl Send for CacheableMemoryAttribute
impl Sync for CacheableMemoryAttribute
impl Unpin for CacheableMemoryAttribute
impl UnwindSafe for CacheableMemoryAttribute
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