#[repr(u32)]pub enum MmCacheType {
NonCached = 0,
Cached = 1,
WriteCombined = 2,
HardwareCoherentCached = 3,
NonCachedUnordered = 4,
}Expand description
cache type for memory mapping
Variants§
Trait Implementations§
Source§impl Clone for MmCacheType
impl Clone for MmCacheType
Source§fn clone(&self) -> MmCacheType
fn clone(&self) -> MmCacheType
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 MmCacheType
impl Debug for MmCacheType
Source§impl PartialEq for MmCacheType
impl PartialEq for MmCacheType
impl Copy for MmCacheType
impl Eq for MmCacheType
impl StructuralPartialEq for MmCacheType
Auto Trait Implementations§
impl Freeze for MmCacheType
impl RefUnwindSafe for MmCacheType
impl Send for MmCacheType
impl Sync for MmCacheType
impl Unpin for MmCacheType
impl UnwindSafe for MmCacheType
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