pub struct ExportDaySum {
pub date: String,
pub hours: String,
pub is_workday: bool,
}Expand description
Serializable structure representing a single day within a monthly summary.
This structure provides daily-level statistics within the broader monthly summary context.
Fields§
§date: StringDate in YYYY-MM-DD format
hours: StringWorking hours for this date formatted as duration
is_workday: boolWhether this was a working day (true) or rest day (false)
Trait Implementations§
Source§impl Debug for ExportDaySum
impl Debug for ExportDaySum
Source§impl<'de> Deserialize<'de> for ExportDaySum
impl<'de> Deserialize<'de> for ExportDaySum
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 ExportDaySum
impl RefUnwindSafe for ExportDaySum
impl Send for ExportDaySum
impl Sync for ExportDaySum
impl Unpin for ExportDaySum
impl UnsafeUnpin for ExportDaySum
impl UnwindSafe for ExportDaySum
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