Struct coins_rs::amount::Amount[][src]

pub struct Amount {
    pub amount: i64,
    pub currency: Currency,
}

Fields

amount: i64currency: Currency

Implementations

impl Amount[src]

pub fn new(amount: i64, currency: Currency) -> Self[src]

pub fn major(self) -> i64[src]

pub fn minor(self) -> Option<i64>[src]

pub fn exchange<T: ExchangeRate + Copy>(
    self,
    currency: Currency,
    rate: &T
) -> Result<Amount, Error>
[src]

Trait Implementations

impl Add<Amount> for Amount[src]

type Output = Result<Amount, Error>

The resulting type after applying the + operator.

impl Clone for Amount[src]

impl Copy for Amount[src]

impl Debug for Amount[src]

impl Display for Amount[src]

impl PartialEq<Amount> for Amount[src]

impl StructuralPartialEq for Amount[src]

impl Sub<Amount> for Amount[src]

type Output = Result<Amount, Error>

The resulting type after applying the - operator.

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> Instrument for T[src]

impl<T> Instrument 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.