pub struct StatsJson {
pub dates: Vec<String>,
pub tasks: TaskStats,
pub notes: usize,
pub logs: LogStats,
pub reminders: usize,
pub characters: usize,
}Expand description
Stats response.
Fields§
§dates: Vec<String>§tasks: TaskStats§notes: usize§logs: LogStats§reminders: usize§characters: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for StatsJson
impl RefUnwindSafe for StatsJson
impl Send for StatsJson
impl Sync for StatsJson
impl Unpin for StatsJson
impl UnsafeUnpin for StatsJson
impl UnwindSafe for StatsJson
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