pub struct AccountingInfoPrefs {
pub first_month_of_fiscal_year: Option<String>,
pub use_account_numbers: Option<bool>,
pub tax_year_month: Option<String>,
pub class_tracking_per_txn: Option<bool>,
pub track_departments: Option<bool>,
pub tax_form: Option<String>,
pub customer_terminology: Option<String>,
pub book_close_date: Option<NaiveDate>,
pub department_terminology: Option<String>,
pub class_tracking_per_txn_line: Option<bool>,
}Expand description
Accounting Info Preferences
Fields§
§first_month_of_fiscal_year: Option<String>§use_account_numbers: Option<bool>§tax_year_month: Option<String>§class_tracking_per_txn: Option<bool>§track_departments: Option<bool>§tax_form: Option<String>§customer_terminology: Option<String>§book_close_date: Option<NaiveDate>§department_terminology: Option<String>§class_tracking_per_txn_line: Option<bool>Trait Implementations§
Source§impl Clone for AccountingInfoPrefs
impl Clone for AccountingInfoPrefs
Source§fn clone(&self) -> AccountingInfoPrefs
fn clone(&self) -> AccountingInfoPrefs
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 AccountingInfoPrefs
impl Debug for AccountingInfoPrefs
Source§impl Default for AccountingInfoPrefs
impl Default for AccountingInfoPrefs
Source§fn default() -> AccountingInfoPrefs
fn default() -> AccountingInfoPrefs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountingInfoPrefswhere
AccountingInfoPrefs: Default,
impl<'de> Deserialize<'de> for AccountingInfoPrefswhere
AccountingInfoPrefs: Default,
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
Source§impl PartialEq for AccountingInfoPrefs
impl PartialEq for AccountingInfoPrefs
Source§impl Serialize for AccountingInfoPrefs
impl Serialize for AccountingInfoPrefs
impl StructuralPartialEq for AccountingInfoPrefs
Auto Trait Implementations§
impl Freeze for AccountingInfoPrefs
impl RefUnwindSafe for AccountingInfoPrefs
impl Send for AccountingInfoPrefs
impl Sync for AccountingInfoPrefs
impl Unpin for AccountingInfoPrefs
impl UnwindSafe for AccountingInfoPrefs
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