[][src]Struct firefly_iii::models::piggy_bank_event::PiggyBankEvent

pub struct PiggyBankEvent {
    pub created_at: Option<String>,
    pub updated_at: Option<String>,
    pub currency_id: Option<i32>,
    pub currency_code: Option<String>,
    pub currency_symbol: Option<String>,
    pub currency_decimal_places: Option<i32>,
    pub amount: Option<f64>,
    pub journal_id: Option<i32>,
    pub transaction_id: Option<i32>,
}

Fields

created_at: Option<String>updated_at: Option<String>currency_id: Option<i32>currency_code: Option<String>currency_symbol: Option<String>currency_decimal_places: Option<i32>amount: Option<f64>journal_id: Option<i32>

The journal associated with the event.

transaction_id: Option<i32>

Methods

impl PiggyBankEvent[src]

Trait Implementations

impl Debug for PiggyBankEvent[src]

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

impl PartialEq<PiggyBankEvent> for PiggyBankEvent[src]

impl Serialize for PiggyBankEvent[src]

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