[][src]Struct firma::offline::sign_wallet::SignWalletOptions

pub struct SignWalletOptions {
    pub wallet_name: String,
    pub encryption_key: Option<StringEncoding>,
}

Fields

wallet_name: String

Wallet name to be signed

encryption_key: Option<StringEncoding>

in CLI it is populated from standard input It is an Option so that structopt could skip,

Trait Implementations

impl Debug for SignWalletOptions[src]

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

impl Serialize for SignWalletOptions[src]

impl StructOpt for SignWalletOptions[src]

impl StructOptInternal for SignWalletOptions[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>,