[][src]Struct firefly_iii::models::exchange_rate_attributes::ExchangeRateAttributes

pub struct ExchangeRateAttributes {
    pub created_at: Option<String>,
    pub updated_at: Option<String>,
    pub from_currency_id: Option<i32>,
    pub from_currency_name: Option<String>,
    pub from_currency_code: Option<String>,
    pub from_currency_symbol: Option<String>,
    pub from_currency_decimal_places: Option<i32>,
    pub to_currency_id: Option<i32>,
    pub to_currency_code: Option<String>,
    pub to_currency_symbol: Option<String>,
    pub to_currency_decimal_places: Option<i32>,
    pub date: Option<String>,
    pub rate: Option<f32>,
    pub amount: Option<f64>,
}

Fields

created_at: Option<String>updated_at: Option<String>from_currency_id: Option<i32>from_currency_name: Option<String>from_currency_code: Option<String>from_currency_symbol: Option<String>from_currency_decimal_places: Option<i32>to_currency_id: Option<i32>to_currency_code: Option<String>to_currency_symbol: Option<String>to_currency_decimal_places: Option<i32>date: Option<String>rate: Option<f32>amount: Option<f64>

The amount in the "to"-currency, if provided in the request.

Methods

impl ExchangeRateAttributes[src]

Trait Implementations

impl Debug for ExchangeRateAttributes[src]

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

impl PartialEq<ExchangeRateAttributes> for ExchangeRateAttributes[src]

impl Serialize for ExchangeRateAttributes[src]

impl StructuralPartialEq for ExchangeRateAttributes[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.