pub struct ProductivityStreakReport {
pub current_streak: u32,
pub longest_streak: u32,
pub last_completed_date: Option<String>,
}Expand description
Productivity streak report
Fields§
§current_streak: u32§longest_streak: u32§last_completed_date: Option<String>Trait Implementations§
Source§impl Clone for ProductivityStreakReport
impl Clone for ProductivityStreakReport
Source§fn clone(&self) -> ProductivityStreakReport
fn clone(&self) -> ProductivityStreakReport
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 ProductivityStreakReport
impl Debug for ProductivityStreakReport
Auto Trait Implementations§
impl Freeze for ProductivityStreakReport
impl RefUnwindSafe for ProductivityStreakReport
impl Send for ProductivityStreakReport
impl Sync for ProductivityStreakReport
impl Unpin for ProductivityStreakReport
impl UnsafeUnpin for ProductivityStreakReport
impl UnwindSafe for ProductivityStreakReport
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