pub struct InvoiceNote {
pub subject: Option<Code>,
pub text: String,
}Expand description
BT-21 / BT-22 invoice note.
Fields§
§subject: Option<Code>BT-21 note subject code (UNCL 4451).
text: StringBT-22 note text.
Trait Implementations§
Source§impl Clone for InvoiceNote
impl Clone for InvoiceNote
Source§fn clone(&self) -> InvoiceNote
fn clone(&self) -> InvoiceNote
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InvoiceNote
impl Debug for InvoiceNote
impl Eq for InvoiceNote
Source§impl PartialEq for InvoiceNote
impl PartialEq for InvoiceNote
impl StructuralPartialEq for InvoiceNote
Auto Trait Implementations§
impl Freeze for InvoiceNote
impl RefUnwindSafe for InvoiceNote
impl Send for InvoiceNote
impl Sync for InvoiceNote
impl Unpin for InvoiceNote
impl UnsafeUnpin for InvoiceNote
impl UnwindSafe for InvoiceNote
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