pub struct InvoiceDocumentReference {
pub id: DocumentReference,
pub issue_date: Option<Date>,
}Expand description
Invoice Document Reference
Fields§
§id: DocumentReferencePreceding Invoice Number The identification of an Invoice that was previously sent by the Seller.
issue_date: Option<Date>Preceding Invoice Issue Date The date when the Preceding Invoice was issued.Shall be provided in case the Preceding Invoice identifier is not unique. Format = “YYYY-MM-DD”.
Trait Implementations§
Source§impl Clone for InvoiceDocumentReference
impl Clone for InvoiceDocumentReference
Source§fn clone(&self) -> InvoiceDocumentReference
fn clone(&self) -> InvoiceDocumentReference
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 moreSource§impl Debug for InvoiceDocumentReference
impl Debug for InvoiceDocumentReference
Source§impl<'de> Deserialize<'de> for InvoiceDocumentReference
impl<'de> Deserialize<'de> for InvoiceDocumentReference
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InvoiceDocumentReference
impl RefUnwindSafe for InvoiceDocumentReference
impl Send for InvoiceDocumentReference
impl Sync for InvoiceDocumentReference
impl Unpin for InvoiceDocumentReference
impl UnwindSafe for InvoiceDocumentReference
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