[][src]Struct firma::offline::print::PrintOptions

pub struct PrintOptions {
    pub psbt_file: Option<PathBuf>,
    pub psbt_base64: Option<String>,
    pub verify_wallets_signatures: bool,
}

Print details regarding a Partially Signed Bitcoin Transaction (PSBT) given as parameter. A psbt_file or a psbt_base should be specified.

Fields

psbt_file: Option<PathBuf>

PSBT json file

psbt_base64: Option<String>

PSBT as base64 string

verify_wallets_signatures: bool

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

Trait Implementations

impl Debug for PrintOptions[src]

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

impl Serialize for PrintOptions[src]

impl StructOpt for PrintOptions[src]

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