Struct gusto_api::types::PaidTimeOff
source · 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
sourceimpl Clone for PaidTimeOff
impl Clone for PaidTimeOff
sourcefn clone(&self) -> PaidTimeOff
fn clone(&self) -> PaidTimeOff
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PaidTimeOff
impl Debug for PaidTimeOff
sourceimpl<'de> Deserialize<'de> for PaidTimeOff
impl<'de> Deserialize<'de> for PaidTimeOff
sourcefn 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
sourceimpl JsonSchema for PaidTimeOff
impl JsonSchema for PaidTimeOff
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn 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 moresourceimpl PartialEq<PaidTimeOff> for PaidTimeOff
impl PartialEq<PaidTimeOff> for PaidTimeOff
sourcefn eq(&self, other: &PaidTimeOff) -> bool
fn eq(&self, other: &PaidTimeOff) -> bool
sourceimpl Serialize for PaidTimeOff
impl Serialize for PaidTimeOff
impl StructuralPartialEq for PaidTimeOff
Auto Trait Implementations
impl RefUnwindSafe for PaidTimeOff
impl Send for PaidTimeOff
impl Sync for PaidTimeOff
impl Unpin for PaidTimeOff
impl UnwindSafe for PaidTimeOff
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more