pub struct OutstandingItem {
pub contact_name: String,
pub description: String,
pub date: String,
pub amount: String,
pub open_amount: String,
}Expand description
An outstanding debtor or creditor item.
Fields§
§contact_name: String§description: String§date: String§amount: String§open_amount: StringTrait Implementations§
Source§impl Clone for OutstandingItem
impl Clone for OutstandingItem
Source§fn clone(&self) -> OutstandingItem
fn clone(&self) -> OutstandingItem
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 moreAuto Trait Implementations§
impl Freeze for OutstandingItem
impl RefUnwindSafe for OutstandingItem
impl Send for OutstandingItem
impl Sync for OutstandingItem
impl Unpin for OutstandingItem
impl UnsafeUnpin for OutstandingItem
impl UnwindSafe for OutstandingItem
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