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: f64
The representation of a pay period.
pay_schedule_uuid: String
The representation of a pay period.
payroll: Option<Payroll>
The representation of a pay period.
start_date: Option<NaiveDate>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PayPeriod
impl<'de> Deserialize<'de> for PayPeriod
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 JsonSchema for PayPeriod
impl JsonSchema for PayPeriod
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 moreimpl StructuralPartialEq for PayPeriod
Auto Trait Implementations§
impl Freeze for PayPeriod
impl RefUnwindSafe for PayPeriod
impl Send for PayPeriod
impl Sync for PayPeriod
impl Unpin for PayPeriod
impl UnwindSafe for PayPeriod
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