[][src]Struct bitcoincore_rpc_json_async::GetWalletInfoResult

pub struct GetWalletInfoResult {
    pub wallet_name: String,
    pub wallet_version: u32,
    pub balance: Amount,
    pub unconfirmed_balance: Amount,
    pub immature_balance: Amount,
    pub tx_count: usize,
    pub keypool_oldest: usize,
    pub keypool_size: usize,
    pub keypool_size_hd_internal: usize,
    pub unlocked_until: Option<u64>,
    pub pay_tx_fee: Amount,
    pub hd_seed_id: Option<XpubIdentifier>,
    pub private_keys_enabled: bool,
    pub avoid_reuse: Option<bool>,
    pub scanning: Option<ScanningDetails>,
}

Fields

wallet_name: Stringwallet_version: u32balance: Amountunconfirmed_balance: Amountimmature_balance: Amounttx_count: usizekeypool_oldest: usizekeypool_size: usizekeypool_size_hd_internal: usizeunlocked_until: Option<u64>pay_tx_fee: Amounthd_seed_id: Option<XpubIdentifier>private_keys_enabled: boolavoid_reuse: Option<bool>scanning: Option<ScanningDetails>

Trait Implementations

impl Clone for GetWalletInfoResult[src]

impl Debug for GetWalletInfoResult[src]

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

impl Eq for GetWalletInfoResult[src]

impl PartialEq<GetWalletInfoResult> for GetWalletInfoResult[src]

impl Serialize for GetWalletInfoResult[src]

impl StructuralEq for GetWalletInfoResult[src]

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