[][src]Struct sn_transfers::Wallet

pub struct Wallet { /* fields omitted */ }

The balance and history of transfers for a wallet.

Implementations

impl Wallet[src]

pub fn new(id: PublicKey) -> Self[src]

Creates a new wallet out of a credit.

pub fn id(&self) -> PublicKey[src]

Get the id of the wallet.

pub fn next_debit(&self) -> u64[src]

Query for next version.

pub fn balance(&self) -> Money[src]

Query for balance.

pub fn contains(&self, id: &TransferId) -> bool[src]

Query for already stored transfer.

pub fn is_sequential(&self, transfer: &Transfer) -> Result<bool>[src]

Zero based indexing, first debit will be nr 0 (we could just as well just compare debits.len()..)

pub fn credits_since(&self, index: usize) -> Vec<Transfer>[src]

Query for new credits since specified index. NB: This is not guaranteed to give you all unknown to you, since there is no absolute order on the credits!

pub fn debits_since(&self, index: usize) -> Vec<Transfer>[src]

Query for new debit since specified index.

pub fn append(&mut self, transfer: Transfer) -> Result<()>[src]

Mutates state.

Trait Implementations

impl Clone for Wallet[src]

impl Debug for Wallet[src]

impl Eq for Wallet[src]

impl PartialEq<Wallet> for Wallet[src]

impl StructuralEq for Wallet[src]

impl StructuralPartialEq for Wallet[src]

Auto Trait Implementations

impl RefUnwindSafe for Wallet

impl Send for Wallet

impl Sync for Wallet

impl Unpin for Wallet

impl UnwindSafe for Wallet

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> 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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,