pub struct PayPeriod {
pub eligible_employees: Vec<EligibleEmployees>,
pub end_date: Option<NaiveDate>,
pub pay_schedule_id: f64,
pub pay_schedule_uuid: String,
pub payroll: Option<Payroll>,
pub start_date: Option<NaiveDate>,
}Expand description
The representation of a pay period.
Fields
eligible_employees: Vec<EligibleEmployees>The representation of a pay period.
end_date: Option<NaiveDate>pay_schedule_id: f64The representation of a pay period.
pay_schedule_uuid: StringThe representation of a pay period.
payroll: Option<Payroll>The representation of a pay period.
start_date: Option<NaiveDate>Trait Implementations
sourceimpl<'de> Deserialize<'de> for PayPeriod
impl<'de> Deserialize<'de> for PayPeriod
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 PayPeriod
impl JsonSchema for PayPeriod
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 moreimpl StructuralPartialEq for PayPeriod
Auto Trait Implementations
impl RefUnwindSafe for PayPeriod
impl Send for PayPeriod
impl Sync for PayPeriod
impl Unpin for PayPeriod
impl UnwindSafe for PayPeriod
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