[][src]Struct private_currency::api::CheckedWalletProof

pub struct CheckedWalletProof {
    pub block: Block,
    pub wallet: Option<Wallet>,
    pub history: Vec<FullEvent>,
    pub unaccepted_transfers: Vec<Transfer>,
}

Information about wallet state useful for a client, obtained after checking a WalletProof.

Fields

Block information.

General information about the wallet.

New events concerning the wallet. The event with index 0 corresponds to an event at index query.start_history_at in the wallet history, and so on.

If wallet is None, the history is empty.

Unaccepted incoming transfers for the wallet.

If wallet is None, the unaccepted_transfers vector is empty.

Trait Implementations

impl Debug for CheckedWalletProof
[src]

Auto Trait Implementations

impl Send for CheckedWalletProof

impl Sync for CheckedWalletProof

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> Erased for T

impl<T> Same for T

Should always be Self