pub struct TodayActivity {
pub completed: usize,
pub started: usize,
pub created: usize,
}Expand description
Activity data for today (last 24 hours)
Fields§
§completed: usizeNumber of specs completed today
started: usizeNumber of specs started (moved to in_progress) today
created: usizeNumber of specs created today
Trait Implementations§
Source§impl Clone for TodayActivity
impl Clone for TodayActivity
Source§fn clone(&self) -> TodayActivity
fn clone(&self) -> TodayActivity
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 TodayActivity
impl Debug for TodayActivity
Source§impl Default for TodayActivity
impl Default for TodayActivity
Source§fn default() -> TodayActivity
fn default() -> TodayActivity
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TodayActivity
impl RefUnwindSafe for TodayActivity
impl Send for TodayActivity
impl Sync for TodayActivity
impl Unpin for TodayActivity
impl UnwindSafe for TodayActivity
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