[][src]Struct firma::online::create_wallet::CreateWalletOptions

pub struct CreateWalletOptions {
    pub r: usize,
    pub xpubs: Vec<ExtendedPubKey>,
    pub xpub_files: Vec<PathBuf>,
    pub daemon_opts: DaemonOpts,
    pub qr_version: i16,
}

Fields

r: usize

number of signatures required

xpubs: Vec<ExtendedPubKey>

Extended Public Keys (xpub) that are composing the wallet, given as String (xprv...)

xpub_files: Vec<PathBuf>

Extended Public Keys (xpub) that are composing the wallet, given as a json file

daemon_opts: DaemonOptsqr_version: i16

QR code max version to use (max size)

Trait Implementations

impl Debug for CreateWalletOptions[src]

impl StructOpt for CreateWalletOptions[src]

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