pub struct PayrollCountryConfig {
pub pay_frequency: String,
pub currency: String,
pub statutory_deductions: Vec<PayrollDeduction>,
pub employer_contributions: Vec<PayrollDeduction>,
pub minimum_wage: MinimumWageConfig,
pub working_hours: WorkingHoursConfig,
pub thirteenth_month: bool,
pub severance: SeveranceConfig,
}Fields§
§pay_frequency: String§currency: String§statutory_deductions: Vec<PayrollDeduction>§employer_contributions: Vec<PayrollDeduction>§minimum_wage: MinimumWageConfig§working_hours: WorkingHoursConfig§thirteenth_month: bool§severance: SeveranceConfigTrait Implementations§
Source§impl Clone for PayrollCountryConfig
impl Clone for PayrollCountryConfig
Source§fn clone(&self) -> PayrollCountryConfig
fn clone(&self) -> PayrollCountryConfig
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 PayrollCountryConfig
impl Debug for PayrollCountryConfig
Source§impl Default for PayrollCountryConfig
impl Default for PayrollCountryConfig
Source§fn default() -> PayrollCountryConfig
fn default() -> PayrollCountryConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PayrollCountryConfig
impl<'de> Deserialize<'de> for PayrollCountryConfig
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 PayrollCountryConfig
impl RefUnwindSafe for PayrollCountryConfig
impl Send for PayrollCountryConfig
impl Sync for PayrollCountryConfig
impl Unpin for PayrollCountryConfig
impl UnsafeUnpin for PayrollCountryConfig
impl UnwindSafe for PayrollCountryConfig
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