pub struct Employee {
pub employee_id: String,
pub employee_name: String,
pub employee_color: String,
pub employee_image: String,
pub employee_total_hours: f64,
pub hours_sum_until_today: f64,
pub rows: Vec<Row>,
pub employee_activity_totals: Vec<ActivityTotal>,
pub time_reporting_done: bool,
pub expected_hours: f64,
pub until_today_expected: f64,
}Fields§
§employee_id: String§employee_name: String§employee_color: String§employee_image: String§employee_total_hours: f64§hours_sum_until_today: f64§rows: Vec<Row>§employee_activity_totals: Vec<ActivityTotal>§time_reporting_done: bool§expected_hours: f64§until_today_expected: f64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Employee
impl<'de> Deserialize<'de> for Employee
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
Auto Trait Implementations§
impl Freeze for Employee
impl RefUnwindSafe for Employee
impl Send for Employee
impl Sync for Employee
impl Unpin for Employee
impl UnwindSafe for Employee
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