pub struct ByYearTypeAndCurrency {
pub sums: BTreeMap<i32, BTreeMap<TxType, BTreeMap<CurrencyCode, Decimal>>>,
}Fields§
§sums: BTreeMap<i32, BTreeMap<TxType, BTreeMap<CurrencyCode, Decimal>>>year -> TxType -> Currency -> Decimal
Implementations§
Trait Implementations§
Source§impl Clone for ByYearTypeAndCurrency
impl Clone for ByYearTypeAndCurrency
Source§fn clone(&self) -> ByYearTypeAndCurrency
fn clone(&self) -> ByYearTypeAndCurrency
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ByYearTypeAndCurrency
impl Debug for ByYearTypeAndCurrency
Source§impl Default for ByYearTypeAndCurrency
impl Default for ByYearTypeAndCurrency
Source§fn default() -> ByYearTypeAndCurrency
fn default() -> ByYearTypeAndCurrency
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ByYearTypeAndCurrency
impl<'de> Deserialize<'de> for ByYearTypeAndCurrency
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ByYearTypeAndCurrency
impl PartialEq for ByYearTypeAndCurrency
Source§impl Serialize for ByYearTypeAndCurrency
impl Serialize for ByYearTypeAndCurrency
impl Eq for ByYearTypeAndCurrency
impl StructuralPartialEq for ByYearTypeAndCurrency
Auto Trait Implementations§
impl Freeze for ByYearTypeAndCurrency
impl RefUnwindSafe for ByYearTypeAndCurrency
impl Send for ByYearTypeAndCurrency
impl Sync for ByYearTypeAndCurrency
impl Unpin for ByYearTypeAndCurrency
impl UnwindSafe for ByYearTypeAndCurrency
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more