[][src]Struct rusty_money::Money

pub struct Money { /* fields omitted */ }

Methods

impl Money[src]

pub fn new(amount: Decimal, currency: Currency) -> Money[src]

pub fn from_string(amount: String, currency: String) -> Money[src]

pub fn amount(&self) -> Decimal[src]

pub fn currency(&self) -> &str[src]

pub fn allocate_to(&self, number: i32) -> Vec<Money>[src]

pub fn is_zero(&self) -> bool[src]

pub fn is_positive(&self) -> bool[src]

pub fn is_negative(&self) -> bool[src]

pub fn allocate(&self, ratios: Vec<i32>) -> Vec<Money>[src]

Trait Implementations

impl Clone for Money[src]

impl Eq for Money[src]

impl Ord for Money[src]

impl PartialEq<Money> for Money[src]

impl PartialOrd<Money> for Money[src]

impl Debug for Money[src]

impl Display for Money[src]

impl Sub<Money> for Money[src]

type Output = Money

The resulting type after applying the - operator.

impl Add<Money> for Money[src]

type Output = Money

The resulting type after applying the + operator.

impl AddAssign<Money> for Money[src]

impl SubAssign<Money> for Money[src]

impl StructuralPartialEq for Money[src]

impl StructuralEq for Money[src]

Auto Trait Implementations

impl Send for Money

impl Sync for Money

impl Unpin for Money

impl UnwindSafe for Money

impl RefUnwindSafe for Money

Blanket Implementations

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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]