Struct smbioslib::CacheAssociativityData
source · [−]pub struct CacheAssociativityData {
pub raw: u8,
pub value: CacheAssociativity,
}
Expand description
Fields
raw: u8
Raw value
raw is most useful when value is None. This is most likely to occur when the standard was updated but this library code has not been updated to match the current standard.
value: CacheAssociativity
The contained CacheAssociativity value
Trait Implementations
sourceimpl Debug for CacheAssociativityData
impl Debug for CacheAssociativityData
sourceimpl Deref for CacheAssociativityData
impl Deref for CacheAssociativityData
type Target = CacheAssociativity
type Target = CacheAssociativity
The resulting type after dereferencing.
sourceimpl From<u8> for CacheAssociativityData
impl From<u8> for CacheAssociativityData
sourceimpl Serialize for CacheAssociativityData
impl Serialize for CacheAssociativityData
Auto Trait Implementations
impl RefUnwindSafe for CacheAssociativityData
impl Send for CacheAssociativityData
impl Sync for CacheAssociativityData
impl Unpin for CacheAssociativityData
impl UnwindSafe for CacheAssociativityData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more