Enum gusto_api::types::FlsaStatus
source · pub enum FlsaStatus {
Exempt,
Nonexempt,
Owner,
SalariedNonexempt,
Noop,
FallthroughString,
}Expand description
The FLSA status for this compensation. Salaried (‘Exempt’) employees are paid a fixed salary every pay period. Salaried with overtime (‘Salaried Nonexempt’) employees are paid a fixed salary every pay period, and receive overtime pay when applicable. Hourly (‘Nonexempt’) employees are paid for the hours they work, and receive overtime pay when applicable. Owners (‘Owner’) are employees that own at least twenty percent of the company.
Variants
Exempt
Nonexempt
Owner
SalariedNonexempt
Noop
FallthroughString
Implementations
sourceimpl FlsaStatus
impl FlsaStatus
Trait Implementations
sourceimpl Clone for FlsaStatus
impl Clone for FlsaStatus
sourcefn clone(&self) -> FlsaStatus
fn clone(&self) -> FlsaStatus
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 FlsaStatus
impl Debug for FlsaStatus
sourceimpl Default for FlsaStatus
impl Default for FlsaStatus
sourcefn default() -> FlsaStatus
fn default() -> FlsaStatus
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FlsaStatus
impl<'de> Deserialize<'de> for FlsaStatus
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 Display for FlsaStatus
impl Display for FlsaStatus
sourceimpl JsonSchema for FlsaStatus
impl JsonSchema for FlsaStatus
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<FlsaStatus> for FlsaStatus
impl PartialEq<FlsaStatus> for FlsaStatus
sourcefn eq(&self, other: &FlsaStatus) -> bool
fn eq(&self, other: &FlsaStatus) -> bool
sourceimpl Serialize for FlsaStatus
impl Serialize for FlsaStatus
impl StructuralPartialEq for FlsaStatus
Auto Trait Implementations
impl RefUnwindSafe for FlsaStatus
impl Send for FlsaStatus
impl Sync for FlsaStatus
impl Unpin for FlsaStatus
impl UnwindSafe for FlsaStatus
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