[][src]Struct firefly_iii::models::budget_spent::BudgetSpent

pub struct BudgetSpent {
    pub sum: Option<f64>,
    pub currency_id: Option<i32>,
    pub currency_code: Option<String>,
    pub currency_symbol: Option<String>,
    pub currency_decimal_places: Option<i32>,
}

Fields

sum: Option<f64>

The amount spent.

currency_id: Option<i32>currency_code: Option<String>currency_symbol: Option<String>currency_decimal_places: Option<i32>

Number of decimals supported by the currency

Methods

impl BudgetSpent[src]

pub fn new() -> BudgetSpent[src]

Trait Implementations

impl Debug for BudgetSpent[src]

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

impl PartialEq<BudgetSpent> for BudgetSpent[src]

impl Serialize for BudgetSpent[src]

impl StructuralPartialEq for BudgetSpent[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: Deserialize<'de>, 
[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.