#[repr(u16)]pub enum Cacheability {
NonCacheable = 4,
WriteBack = 12,
}Expand description
Cacheability attribute of a memory region. Only valid for normal memory.
Variants§
Trait Implementations§
Source§impl Clone for Cacheability
impl Clone for Cacheability
Source§fn clone(&self) -> Cacheability
fn clone(&self) -> Cacheability
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 Cacheability
impl Debug for Cacheability
Source§impl Default for Cacheability
impl Default for Cacheability
Source§fn default() -> Cacheability
fn default() -> Cacheability
Returns the “default value” for a type. Read more
Source§impl PartialEq for Cacheability
impl PartialEq for Cacheability
Source§impl TryFrom<u16> for Cacheability
impl TryFrom<u16> for Cacheability
impl Copy for Cacheability
impl Eq for Cacheability
impl StructuralPartialEq for Cacheability
Auto Trait Implementations§
impl Freeze for Cacheability
impl RefUnwindSafe for Cacheability
impl Send for Cacheability
impl Sync for Cacheability
impl Unpin for Cacheability
impl UnwindSafe for Cacheability
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