pub struct AccountNote {
pub date: NaiveDate,
pub val: String,
pub src: Source,
}Expand description
Represents a note directive
Fields§
§date: NaiveDate§val: String§src: SourceTrait Implementations§
Source§impl Clone for AccountNote
impl Clone for AccountNote
Source§fn clone(&self) -> AccountNote
fn clone(&self) -> AccountNote
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 AccountNote
impl Debug for AccountNote
Source§impl Hash for AccountNote
impl Hash for AccountNote
Source§impl PartialEq for AccountNote
impl PartialEq for AccountNote
impl Eq for AccountNote
impl StructuralPartialEq for AccountNote
Auto Trait Implementations§
impl Freeze for AccountNote
impl RefUnwindSafe for AccountNote
impl Send for AccountNote
impl Sync for AccountNote
impl Unpin for AccountNote
impl UnwindSafe for AccountNote
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