#[repr(C)]pub enum hv_cache_type_t {
DATA = 0,
INSTRUCTION = 1,
}Expand description
The structure that describes an instruction or data cache element.
Variants§
DATA = 0
The value that describes a cached data value.
INSTRUCTION = 1
The value that describes a cached instuction value.
Trait Implementations§
Source§impl Clone for hv_cache_type_t
impl Clone for hv_cache_type_t
Source§fn clone(&self) -> hv_cache_type_t
fn clone(&self) -> hv_cache_type_t
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 hv_cache_type_t
impl Debug for hv_cache_type_t
Source§impl Hash for hv_cache_type_t
impl Hash for hv_cache_type_t
Source§impl Ord for hv_cache_type_t
impl Ord for hv_cache_type_t
Source§fn cmp(&self, other: &hv_cache_type_t) -> Ordering
fn cmp(&self, other: &hv_cache_type_t) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for hv_cache_type_t
impl PartialEq for hv_cache_type_t
Source§impl PartialOrd for hv_cache_type_t
impl PartialOrd for hv_cache_type_t
impl Copy for hv_cache_type_t
impl Eq for hv_cache_type_t
impl StructuralPartialEq for hv_cache_type_t
Auto Trait Implementations§
impl Freeze for hv_cache_type_t
impl RefUnwindSafe for hv_cache_type_t
impl Send for hv_cache_type_t
impl Sync for hv_cache_type_t
impl Unpin for hv_cache_type_t
impl UnwindSafe for hv_cache_type_t
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