[][src]Struct finance_solution::NperSolution

pub struct NperSolution {
    pub periodic_rate: f64,
    pub periods: f64,
    pub payment: f64,
    pub present_value_total: f64,
    pub future_value_total: f64,
    pub formula: String,
}

Fields

periodic_rate: f64periods: f64payment: f64present_value_total: f64future_value_total: f64formula: String

Implementations

impl NperSolution[src]

pub fn new(
    periodic_rate: f64,
    periods: f64,
    payment: f64,
    present_value_total: f64,
    future_value_total: f64
) -> Self
[src]

Trait Implementations

impl Debug for NperSolution[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, 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.