pub struct Xact {
pub journal: *const Journal,
pub date: Option<NaiveDate>,
pub aux_date: Option<NaiveDate>,
pub payee: String,
pub posts: Vec<Post>,
pub note: Option<String>,
}
Fields§
§journal: *const Journal
§date: Option<NaiveDate>
§aux_date: Option<NaiveDate>
§payee: String
§posts: Vec<Post>
§note: Option<String>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Xact
impl RefUnwindSafe for Xact
impl !Send for Xact
impl !Sync for Xact
impl Unpin for Xact
impl UnwindSafe for Xact
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