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