[][src]Struct nnsdk::settings::system::FirmwareVersion

#[repr(C)]pub struct FirmwareVersion {
    pub major: u8,
    pub minor: u8,
    pub micro: u8,
    pub padding1: u8,
    pub revision_major: u8,
    pub revision_minor: u8,
    pub padding2: u8,
    pub padding3: u8,
    pub platform: [c_char; 32],
    pub version_hash: [c_char; 64],
    pub display_version: [c_char; 24],
    pub display_title: [c_char; 128],
}

Fields

major: u8minor: u8micro: u8padding1: u8revision_major: u8revision_minor: u8padding2: u8padding3: u8platform: [c_char; 32]version_hash: [c_char; 64]display_version: [c_char; 24]display_title: [c_char; 128]

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.