[][src]Struct firma::offline::restore::RestoreOptions

pub struct RestoreOptions {
    pub key_name: String,
    pub nature: Nature,
    pub qr_version: i16,
    pub encryption_key: Option<StringEncoding>,
    pub value: String,
}

Restore a master key from the secret component

Fields

key_name: String

Name of the key

nature: Nature

Kind of the secret material

qr_version: i16

QR code max version to use (max size)

encryption_key: Option<StringEncoding>

Optional encryption key for saving the key file encrypted in CLI it is populated from standard input

value: String

value of the secret component, could be xprv or seed in hex or bech32

Trait Implementations

impl Debug for RestoreOptions[src]

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

impl Serialize for RestoreOptions[src]

impl StructOpt for RestoreOptions[src]

impl StructOptInternal for RestoreOptions[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,