pub struct Invoice {
pub profile: Profile,
pub number: String,
pub currency: String,
pub seller: Party,
pub buyer: Party,
pub lines: Vec<Line>,
pub tax_total: Amount,
pub payable: Amount,
}Fields§
§profile: Profile§number: String§currency: String§seller: Party§buyer: Party§lines: Vec<Line>§tax_total: Amount§payable: AmountImplementations§
Trait Implementations§
impl Eq for Invoice
impl StructuralPartialEq for Invoice
Auto Trait Implementations§
impl Freeze for Invoice
impl RefUnwindSafe for Invoice
impl Send for Invoice
impl Sync for Invoice
impl Unpin for Invoice
impl UnsafeUnpin for Invoice
impl UnwindSafe for Invoice
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