pub struct ReportDailyStats {
pub date: String,
pub reviews: usize,
}Expand description
Daily statistics for a study report.
Fields§
§date: StringDate in YYYY-MM-DD format.
reviews: usizeNumber of reviews on this day.
Trait Implementations§
Source§impl Clone for ReportDailyStats
impl Clone for ReportDailyStats
Source§fn clone(&self) -> ReportDailyStats
fn clone(&self) -> ReportDailyStats
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 ReportDailyStats
impl Debug for ReportDailyStats
Source§impl Default for ReportDailyStats
impl Default for ReportDailyStats
Source§fn default() -> ReportDailyStats
fn default() -> ReportDailyStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReportDailyStats
impl RefUnwindSafe for ReportDailyStats
impl Send for ReportDailyStats
impl Sync for ReportDailyStats
impl Unpin for ReportDailyStats
impl UnwindSafe for ReportDailyStats
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