pub struct PayrollTaxSchemaConfig {
pub enabled: bool,
}Expand description
Payroll tax configuration.
Controls generation of payroll tax data (employer/employee contributions, social security, Medicare, etc.).
Fields§
§enabled: boolWhether payroll tax generation is enabled.
Trait Implementations§
Source§impl Clone for PayrollTaxSchemaConfig
impl Clone for PayrollTaxSchemaConfig
Source§fn clone(&self) -> PayrollTaxSchemaConfig
fn clone(&self) -> PayrollTaxSchemaConfig
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 PayrollTaxSchemaConfig
impl Debug for PayrollTaxSchemaConfig
Source§impl Default for PayrollTaxSchemaConfig
impl Default for PayrollTaxSchemaConfig
Source§fn default() -> PayrollTaxSchemaConfig
fn default() -> PayrollTaxSchemaConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PayrollTaxSchemaConfig
impl<'de> Deserialize<'de> for PayrollTaxSchemaConfig
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 PayrollTaxSchemaConfig
impl RefUnwindSafe for PayrollTaxSchemaConfig
impl Send for PayrollTaxSchemaConfig
impl Sync for PayrollTaxSchemaConfig
impl Unpin for PayrollTaxSchemaConfig
impl UnsafeUnpin for PayrollTaxSchemaConfig
impl UnwindSafe for PayrollTaxSchemaConfig
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