[][src]Struct eu4save::CountryLedger

pub struct CountryLedger {
    pub income: Vec<f32>,
    pub expense: Vec<f32>,
    pub lastmonthincome: Option<f32>,
    pub lastmonthincometable: Vec<f32>,
    pub lastmonthexpensetable: Vec<f32>,
    pub totalexpensetable: Vec<f32>,
    pub lastyearincome: Vec<f32>,
    pub lastyearexpense: Vec<f32>,
}

Fields

income: Vec<f32>expense: Vec<f32>lastmonthincome: Option<f32>lastmonthincometable: Vec<f32>lastmonthexpensetable: Vec<f32>totalexpensetable: Vec<f32>lastyearincome: Vec<f32>lastyearexpense: Vec<f32>

Trait Implementations

impl Clone for CountryLedger[src]

impl Debug for CountryLedger[src]

impl Default for CountryLedger[src]

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