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

pub fn from(
    id: PublicKey,
    balance: Money,
    debit_version: u64,
    credit_ids: HashSet<CreditId>
) -> Self
[src]

Creates a wallet from existing state.

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: &CreditId) -> bool[src]

Query for already received credit.

pub fn apply_debit(&mut self, debit: Debit) -> Result<(), Error>[src]

Mutates state.

pub fn apply_credit(&mut self, credit: Credit) -> Result<(), Error>[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

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