pub struct PaidTimeOff {
pub accrual_balance: String,
pub accrual_period: String,
pub accrual_rate: String,
pub accrual_unit: String,
pub maximum_accrual_balance: String,
pub name: String,
pub paid_at_termination: bool,
}Expand description
The representation of paid time off in Gusto.
Fields§
§accrual_balance: StringThe representation of paid time off in Gusto.
accrual_period: StringThe representation of paid time off in Gusto.
accrual_rate: StringThe representation of paid time off in Gusto.
accrual_unit: StringThe representation of paid time off in Gusto.
maximum_accrual_balance: StringThe representation of paid time off in Gusto.
name: StringThe representation of paid time off in Gusto.
paid_at_termination: boolThe representation of paid time off in Gusto.
Trait Implementations§
Source§impl Clone for PaidTimeOff
impl Clone for PaidTimeOff
Source§fn clone(&self) -> PaidTimeOff
fn clone(&self) -> PaidTimeOff
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 PaidTimeOff
impl Debug for PaidTimeOff
Source§impl<'de> Deserialize<'de> for PaidTimeOff
impl<'de> Deserialize<'de> for PaidTimeOff
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 JsonSchema for PaidTimeOff
impl JsonSchema for PaidTimeOff
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for PaidTimeOff
impl PartialEq for PaidTimeOff
Source§impl Serialize for PaidTimeOff
impl Serialize for PaidTimeOff
impl StructuralPartialEq for PaidTimeOff
Auto Trait Implementations§
impl Freeze for PaidTimeOff
impl RefUnwindSafe for PaidTimeOff
impl Send for PaidTimeOff
impl Sync for PaidTimeOff
impl Unpin for PaidTimeOff
impl UnwindSafe for PaidTimeOff
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