struct NvramEntryMetadata {
pub vendor: String,
pub name: String,
pub timestamp: Option<EFI_TIME>,
pub attr: u32,
pub size: usize,
}
Expand description
Similar to uefi_nvram_storage::in_memory::VariableEntry
, but with metadata
members that are easier to manipulate
Fields§
§vendor: String
§name: String
§timestamp: Option<EFI_TIME>
§attr: u32
§size: usize
Auto Trait Implementations§
impl Freeze for NvramEntryMetadata
impl RefUnwindSafe for NvramEntryMetadata
impl Send for NvramEntryMetadata
impl Sync for NvramEntryMetadata
impl Unpin for NvramEntryMetadata
impl UnwindSafe for NvramEntryMetadata
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