Struct gusto_api::types::Compensation
source · pub struct Compensation {
pub effective_date: Option<NaiveDate>,
pub flsa_status: Option<FlsaStatus>,
pub id: i64,
pub job_id: i64,
pub payment_unit: Option<PaymentUnit>,
pub rate: String,
pub version: String,
}Expand description
The representation of compensation in Gusto.
Fields
effective_date: Option<NaiveDate>flsa_status: Option<FlsaStatus>The representation of compensation in Gusto.
id: i64The representation of compensation in Gusto.
job_id: i64The representation of compensation in Gusto.
payment_unit: Option<PaymentUnit>The representation of compensation in Gusto.
rate: StringThe representation of compensation in Gusto.
version: StringThe representation of compensation in Gusto.
Trait Implementations
sourceimpl Clone for Compensation
impl Clone for Compensation
sourcefn clone(&self) -> Compensation
fn clone(&self) -> Compensation
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 Compensation
impl Debug for Compensation
sourceimpl<'de> Deserialize<'de> for Compensation
impl<'de> Deserialize<'de> for Compensation
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 Compensation
impl JsonSchema for Compensation
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<Compensation> for Compensation
impl PartialEq<Compensation> for Compensation
sourcefn eq(&self, other: &Compensation) -> bool
fn eq(&self, other: &Compensation) -> bool
sourceimpl Serialize for Compensation
impl Serialize for Compensation
impl StructuralPartialEq for Compensation
Auto Trait Implementations
impl RefUnwindSafe for Compensation
impl Send for Compensation
impl Sync for Compensation
impl Unpin for Compensation
impl UnwindSafe for Compensation
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