pub struct StatsResult {
pub total_fuses: usize,
pub total_detonated: usize,
pub total_ticking: usize,
pub total_inert: usize,
pub by_owner: Vec<OwnerRow>,
pub by_tag: Vec<TagRow>,
pub by_month: Vec<MonthRow>,
}Expand description
The complete stats result.
Fields§
§total_fuses: usize§total_detonated: usize§total_ticking: usize§total_inert: usize§by_owner: Vec<OwnerRow>§by_tag: Vec<TagRow>§by_month: Vec<MonthRow>Trait Implementations§
Source§impl Debug for StatsResult
impl Debug for StatsResult
Auto Trait Implementations§
impl Freeze for StatsResult
impl RefUnwindSafe for StatsResult
impl Send for StatsResult
impl Sync for StatsResult
impl Unpin for StatsResult
impl UnsafeUnpin for StatsResult
impl UnwindSafe for StatsResult
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more