pub struct UnitData<'a> {
pub model_id: u32,
pub model_name: &'a str,
pub specifier_id: u32,
pub version: u32,
}
Expand description
Data in unit directory block of Configuration ROM.
Fields§
§model_id: u32
The numeric identifier of model.
model_name: &'a str
The name of model.
specifier_id: u32
The specifier identifier.
version: u32
Version.
Trait Implementations§
impl<'a> Copy for UnitData<'a>
Auto Trait Implementations§
impl<'a> Freeze for UnitData<'a>
impl<'a> RefUnwindSafe for UnitData<'a>
impl<'a> Send for UnitData<'a>
impl<'a> Sync for UnitData<'a>
impl<'a> Unpin for UnitData<'a>
impl<'a> UnwindSafe for UnitData<'a>
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