pub struct Ledger {
pub items: Vec<LedgerItem>,
}
Expand description
Main document. Contains transactions and/or commodity prices.
Fields§
§items: Vec<LedgerItem>
Trait Implementations§
Source§impl Serializer for Ledger
impl Serializer for Ledger
fn write<W>(
&self,
writer: &mut W,
settings: &SerializerSettings,
) -> Result<(), Error>where
W: Write,
fn to_string_pretty(&self, settings: &SerializerSettings) -> String
impl Eq for Ledger
impl StructuralPartialEq for Ledger
Auto Trait Implementations§
impl Freeze for Ledger
impl RefUnwindSafe for Ledger
impl Send for Ledger
impl Sync for Ledger
impl Unpin for Ledger
impl UnwindSafe for Ledger
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