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§
Implementations§
Trait Implementations§
Source§impl Clone for FlsaStatus
impl Clone for FlsaStatus
Source§fn clone(&self) -> FlsaStatus
fn clone(&self) -> FlsaStatus
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 FlsaStatus
impl Debug for FlsaStatus
Source§impl Default for FlsaStatus
impl Default for FlsaStatus
Source§fn default() -> FlsaStatus
fn default() -> FlsaStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlsaStatus
impl<'de> Deserialize<'de> for FlsaStatus
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 Display for FlsaStatus
impl Display for FlsaStatus
Source§impl JsonSchema for FlsaStatus
impl JsonSchema for FlsaStatus
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 FlsaStatus
impl PartialEq for FlsaStatus
Source§impl Serialize for FlsaStatus
impl Serialize for FlsaStatus
impl StructuralPartialEq for FlsaStatus
Auto Trait Implementations§
impl Freeze for FlsaStatus
impl RefUnwindSafe for FlsaStatus
impl Send for FlsaStatus
impl Sync for FlsaStatus
impl Unpin for FlsaStatus
impl UnwindSafe for FlsaStatus
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