pub struct ByTypeAndCurrency {
pub sums: BTreeMap<TxType, BTreeMap<CurrencyCode, Decimal>>,
}Fields§
§sums: BTreeMap<TxType, BTreeMap<CurrencyCode, Decimal>>Implementations§
Trait Implementations§
Source§impl Clone for ByTypeAndCurrency
impl Clone for ByTypeAndCurrency
Source§fn clone(&self) -> ByTypeAndCurrency
fn clone(&self) -> ByTypeAndCurrency
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 ByTypeAndCurrency
impl Debug for ByTypeAndCurrency
Source§impl Default for ByTypeAndCurrency
impl Default for ByTypeAndCurrency
Source§fn default() -> ByTypeAndCurrency
fn default() -> ByTypeAndCurrency
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ByTypeAndCurrency
impl<'de> Deserialize<'de> for ByTypeAndCurrency
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 ByTypeAndCurrency
impl PartialEq for ByTypeAndCurrency
Source§impl Serialize for ByTypeAndCurrency
impl Serialize for ByTypeAndCurrency
impl Eq for ByTypeAndCurrency
impl StructuralPartialEq for ByTypeAndCurrency
Auto Trait Implementations§
impl Freeze for ByTypeAndCurrency
impl RefUnwindSafe for ByTypeAndCurrency
impl Send for ByTypeAndCurrency
impl Sync for ByTypeAndCurrency
impl Unpin for ByTypeAndCurrency
impl UnwindSafe for ByTypeAndCurrency
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