Struct finql_data::cash_flow::CashFlow[][src]

pub struct CashFlow {
    pub amount: CashAmount,
    pub date: NaiveDate,
}

Container for a single cash flow

Fields

amount: CashAmountdate: NaiveDate

Implementations

impl CashFlow[src]

pub fn new(amount: f64, currency: Currency, date: NaiveDate) -> CashFlow[src]

Construct new cash flow

pub fn aggregatable(&self, cf: &CashFlow) -> bool[src]

Check, whether cash flows could be aggregated

pub fn fuzzy_cash_flows_cmp_eq(&self, cf: &CashFlow, tol: f64) -> bool[src]

Compare to cash flows for equality within a given absolute tolerance

Trait Implementations

impl Clone for CashFlow[src]

impl Copy for CashFlow[src]

impl Debug for CashFlow[src]

impl<'de> Deserialize<'de> for CashFlow[src]

impl Display for CashFlow[src]

impl Neg for CashFlow[src]

type Output = CashFlow

The resulting type after applying the - operator.

impl Serialize for CashFlow[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.