pub struct RetentionLimitsConfig {
pub employee_data_years: u32,
pub financial_records_years: u32,
pub tax_records_years: u32,
}Fields§
§employee_data_years: u32§financial_records_years: u32§tax_records_years: u32Trait Implementations§
Source§impl Clone for RetentionLimitsConfig
impl Clone for RetentionLimitsConfig
Source§fn clone(&self) -> RetentionLimitsConfig
fn clone(&self) -> RetentionLimitsConfig
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 RetentionLimitsConfig
impl Debug for RetentionLimitsConfig
Source§impl Default for RetentionLimitsConfig
impl Default for RetentionLimitsConfig
Source§fn default() -> RetentionLimitsConfig
fn default() -> RetentionLimitsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RetentionLimitsConfig
impl<'de> Deserialize<'de> for RetentionLimitsConfig
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 RetentionLimitsConfig
impl RefUnwindSafe for RetentionLimitsConfig
impl Send for RetentionLimitsConfig
impl Sync for RetentionLimitsConfig
impl Unpin for RetentionLimitsConfig
impl UnsafeUnpin for RetentionLimitsConfig
impl UnwindSafe for RetentionLimitsConfig
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