pub struct UnitKeyFile {
pub unit_key_block_start_address: u32,
pub header: UnitKeyFileHeader,
pub cps_units: Vec<CpsUnitRecord>,
}Expand description
A parsed Unit_Key_RO.inf file.
Fields§
§unit_key_block_start_address: u32Unit_Key_Block_start_address field — byte offset from the
start of the file at which Unit_Key_Block() begins. Always
a multiple of 16.
header: UnitKeyFileHeaderParsed file header.
cps_units: Vec<CpsUnitRecord>Per-CPS-Unit records from Unit_Key_Block().
Implementations§
Trait Implementations§
Source§impl Clone for UnitKeyFile
impl Clone for UnitKeyFile
Source§fn clone(&self) -> UnitKeyFile
fn clone(&self) -> UnitKeyFile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for UnitKeyFile
impl RefUnwindSafe for UnitKeyFile
impl Send for UnitKeyFile
impl Sync for UnitKeyFile
impl Unpin for UnitKeyFile
impl UnsafeUnpin for UnitKeyFile
impl UnwindSafe for UnitKeyFile
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