[][src]Struct firma::common::list::ListOptions

pub struct ListOptions {
    pub kind: Kind,
    pub verify_wallets_signatures: bool,
    pub encryption_keys: Vec<StringEncoding>,
}

Fields

kind: Kind

list wallets, keys or psbts

verify_wallets_signatures: bool

Return wallets only if wallet signature file is present and signature verifies

encryption_keys: Vec<StringEncoding>

Optional encryption keys to read encrypted [PrivateMasterKey]

Trait Implementations

impl Debug for ListOptions[src]

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

impl Serialize for ListOptions[src]

impl StructOpt for ListOptions[src]

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