#[repr(u8)]pub enum MemoryCacheType {
_NonCacheable = 0,
Cacheable = 2,
_CacheableWriteCombining = 4,
_CacheableAndPrefetchable = 6,
}
Variants§
Trait Implementations§
Source§impl Clone for MemoryCacheType
impl Clone for MemoryCacheType
Source§fn clone(&self) -> MemoryCacheType
fn clone(&self) -> MemoryCacheType
Returns a copy 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 MemoryCacheType
impl Debug for MemoryCacheType
impl Copy for MemoryCacheType
Auto Trait Implementations§
impl Freeze for MemoryCacheType
impl RefUnwindSafe for MemoryCacheType
impl Send for MemoryCacheType
impl Sync for MemoryCacheType
impl Unpin for MemoryCacheType
impl UnwindSafe for MemoryCacheType
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