Struct lumi::Amount[][src]

pub struct Amount {
    pub number: Decimal,
    pub currency: Currency,
}

A Decimal number plus the currency.

Fields

number: Decimalcurrency: Currency

Trait Implementations

impl Clone for Amount[src]

impl Debug for Amount[src]

impl Display for Amount[src]

impl<'a> Div<Decimal> for &'a Amount[src]

type Output = Amount

The resulting type after applying the / operator.

impl Eq for Amount[src]

impl Hash for Amount[src]

impl<'a> Mul<Decimal> for &'a Amount[src]

type Output = Amount

The resulting type after applying the * operator.

impl PartialEq<Amount> for Amount[src]

impl StructuralEq for Amount[src]

impl StructuralPartialEq for Amount[src]

Auto Trait Implementations

impl RefUnwindSafe for Amount

impl Send for Amount

impl Sync for Amount

impl Unpin for Amount

impl UnwindSafe for Amount

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.