[][src]Struct bitcoincore_rpc_json_async::WalletCreateFundedPsbtOptions

pub struct WalletCreateFundedPsbtOptions {
    pub change_address: Option<Address>,
    pub change_position: Option<u16>,
    pub change_type: Option<AddressType>,
    pub include_watching: Option<bool>,
    pub lock_unspent: Option<bool>,
    pub fee_rate: Option<Amount>,
    pub subtract_fee_from_outputs: Vec<u16>,
    pub replaceable: Option<bool>,
    pub conf_target: Option<u16>,
    pub estimate_mode: Option<EstimateMode>,
}

Models the request for "walletcreatefundedpsbt"

Fields

change_address: Option<Address>change_position: Option<u16>change_type: Option<AddressType>include_watching: Option<bool>lock_unspent: Option<bool>fee_rate: Option<Amount>subtract_fee_from_outputs: Vec<u16>replaceable: Option<bool>conf_target: Option<u16>estimate_mode: Option<EstimateMode>

Trait Implementations

impl Clone for WalletCreateFundedPsbtOptions[src]

impl Debug for WalletCreateFundedPsbtOptions[src]

impl Default for WalletCreateFundedPsbtOptions[src]

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

impl Eq for WalletCreateFundedPsbtOptions[src]

impl PartialEq<WalletCreateFundedPsbtOptions> for WalletCreateFundedPsbtOptions[src]

impl Serialize for WalletCreateFundedPsbtOptions[src]

impl StructuralEq for WalletCreateFundedPsbtOptions[src]

impl StructuralPartialEq for WalletCreateFundedPsbtOptions[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> 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.