[][src]Struct firma::offline::random::RandomOptions

pub struct RandomOptions {
    pub key_name: String,
    pub qr_version: i16,
    pub encryption_key: Option<StringEncoding>,
}

Generate a bitcoin master key in bip32 randomly

Fields

key_name: String

Name of the key

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

Implementations

impl RandomOptions[src]

pub fn new(key_name: String) -> Self[src]

Trait Implementations

impl Clone for RandomOptions[src]

impl Debug for RandomOptions[src]

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

impl Serialize for RandomOptions[src]

impl StructOpt for RandomOptions[src]

impl StructOptInternal for RandomOptions[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> 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.

impl<T> Typeable for T where
    T: Any

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