pub struct Post {
pub account: *const Account,
pub xact_ptr: *const Xact,
pub amount: Option<Amount>,
pub cost: Option<Amount>,
pub note: Option<String>,
}
Fields§
§account: *const Account
Pointer to the Account.
xact_ptr: *const Xact
Pointer to the Xact.
amount: Option<Amount>
§cost: Option<Amount>
§note: Option<String>
Implementations§
Trait Implementations§
impl StructuralPartialEq for Post
Auto Trait Implementations§
impl Freeze for Post
impl RefUnwindSafe for Post
impl !Send for Post
impl !Sync for Post
impl Unpin for Post
impl UnwindSafe for Post
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