pub struct NvmUsage {
pub store_bytes: usize,
pub other_bytes: usize,
pub free_bytes: usize,
}Expand description
NVM usage broken down into three buckets.
Fields§
§store_bytes: usizeBytes consumed by yb store objects (the 0x5F_00xx range).
other_bytes: usizeBytes consumed by other PIV objects (certificates, printed info, etc.).
free_bytes: usizeEstimated free bytes (total budget minus store and other).
Auto Trait Implementations§
impl Freeze for NvmUsage
impl RefUnwindSafe for NvmUsage
impl Send for NvmUsage
impl Sync for NvmUsage
impl Unpin for NvmUsage
impl UnsafeUnpin for NvmUsage
impl UnwindSafe for NvmUsage
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