pub enum CacheType {
Null = 0,
Data = 1,
Instruction = 2,
Unified = 3,
Reserved = 4,
}
Expand description
Info about a what a given cache caches (instructions, data, etc.)
Variants§
Null = 0
Null - No more caches
Data = 1
Data cache
Instruction = 2
Instruction cache
Unified = 3
Data and Instruction cache
Reserved = 4
4-31 = Reserved
Trait Implementations§
impl Eq for CacheType
impl StructuralPartialEq for CacheType
Auto Trait Implementations§
impl Freeze for CacheType
impl RefUnwindSafe for CacheType
impl Send for CacheType
impl Sync for CacheType
impl Unpin for CacheType
impl UnwindSafe for CacheType
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