[][src]Struct ledger_zondax_generic::AppInfo

pub struct AppInfo {
    pub app_name: String,
    pub app_version: String,
    pub flag_len: u8,
    pub flags_value: u8,
    pub flag_recovery: bool,
    pub flag_signed_mcu_code: bool,
    pub flag_onboarded: bool,
    pub flag_pin_validated: bool,
}

App Information

Fields

app_name: String

Name of the application

app_version: String

App version

flag_len: u8

Flag length

flags_value: u8

Flag value

flag_recovery: bool

Flag Recovery

flag_signed_mcu_code: bool

Flag Signed MCU code

flag_onboarded: bool

Flag Onboarded

flag_pin_validated: bool

Flag Pin Validated

Trait Implementations

impl Clone for AppInfo[src]

impl Debug for AppInfo[src]

impl<'de> Deserialize<'de> for AppInfo[src]

impl Serialize for AppInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.