[][src]Struct debtsolver::MultiPartyTransaction

pub struct MultiPartyTransaction { /* fields omitted */ }

Represents a multi-party transaction where one or more parties (debtors) owes one or more parties (creditors) the amount specified.

Methods

impl MultiPartyTransaction[src]

pub fn new(
    debtors: Vec<String>,
    creditors: Vec<String>,
    amount: Money
) -> Result<Self, ParseAmountError>
[src]

Trait Implementations

impl Debug for MultiPartyTransaction[src]

impl Display for MultiPartyTransaction[src]

impl Eq for MultiPartyTransaction[src]

impl Ord for MultiPartyTransaction[src]

impl PartialEq<MultiPartyTransaction> for MultiPartyTransaction[src]

impl PartialOrd<MultiPartyTransaction> for MultiPartyTransaction[src]

impl StructuralEq for MultiPartyTransaction[src]

impl StructuralPartialEq for MultiPartyTransaction[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> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = !

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.