pub struct InvoiceRulesConfig {
pub numbering_format: String,
pub mandatory_fields: Vec<String>,
pub retention_years: u32,
pub electronic_invoice_mandatory: bool,
pub e_invoice_format: String,
}Fields§
§numbering_format: String§mandatory_fields: Vec<String>§retention_years: u32§electronic_invoice_mandatory: bool§e_invoice_format: StringTrait Implementations§
Source§impl Clone for InvoiceRulesConfig
impl Clone for InvoiceRulesConfig
Source§fn clone(&self) -> InvoiceRulesConfig
fn clone(&self) -> InvoiceRulesConfig
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 InvoiceRulesConfig
impl Debug for InvoiceRulesConfig
Source§impl Default for InvoiceRulesConfig
impl Default for InvoiceRulesConfig
Source§fn default() -> InvoiceRulesConfig
fn default() -> InvoiceRulesConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvoiceRulesConfig
impl<'de> Deserialize<'de> for InvoiceRulesConfig
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 InvoiceRulesConfig
impl RefUnwindSafe for InvoiceRulesConfig
impl Send for InvoiceRulesConfig
impl Sync for InvoiceRulesConfig
impl Unpin for InvoiceRulesConfig
impl UnsafeUnpin for InvoiceRulesConfig
impl UnwindSafe for InvoiceRulesConfig
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