pub struct CashTransactionsWrapper {
pub items: Vec<CashTransaction>,
}Expand description
Wrapper for cash transactions section
Fields§
§items: Vec<CashTransaction>List of cash transactions
Trait Implementations§
Source§impl Clone for CashTransactionsWrapper
impl Clone for CashTransactionsWrapper
Source§fn clone(&self) -> CashTransactionsWrapper
fn clone(&self) -> CashTransactionsWrapper
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 CashTransactionsWrapper
impl Debug for CashTransactionsWrapper
Source§impl Default for CashTransactionsWrapper
impl Default for CashTransactionsWrapper
Source§fn default() -> CashTransactionsWrapper
fn default() -> CashTransactionsWrapper
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CashTransactionsWrapper
impl<'de> Deserialize<'de> for CashTransactionsWrapper
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 CashTransactionsWrapper
impl PartialEq for CashTransactionsWrapper
Source§impl Serialize for CashTransactionsWrapper
impl Serialize for CashTransactionsWrapper
impl StructuralPartialEq for CashTransactionsWrapper
Auto Trait Implementations§
impl Freeze for CashTransactionsWrapper
impl RefUnwindSafe for CashTransactionsWrapper
impl Send for CashTransactionsWrapper
impl Sync for CashTransactionsWrapper
impl Unpin for CashTransactionsWrapper
impl UnwindSafe for CashTransactionsWrapper
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