[][src]Struct nitrokey::StorageProductionInfo

pub struct StorageProductionInfo {
    pub firmware_version: FirmwareVersion,
    pub firmware_version_internal: u8,
    pub serial_number_cpu: u32,
    pub sd_card: SdCardData,
}

Production information for a Storage device.

Fields

firmware_version: FirmwareVersion

The firmware version.

firmware_version_internal: u8

The internal firmware version.

serial_number_cpu: u32

The serial number of the CPU.

sd_card: SdCardData

Information about the SD card.

Trait Implementations

impl Debug for StorageProductionInfo[src]

impl From<NK_storage_ProductionTest> for StorageProductionInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.