pub struct LevelSummary {
pub count: u32,
pub minutes: u32,
pub thirty_day_avg_minutes: f32,
}Fields§
§count: u32§minutes: u32§thirty_day_avg_minutes: f32Trait Implementations§
Source§impl Debug for LevelSummary
impl Debug for LevelSummary
Source§impl Default for LevelSummary
impl Default for LevelSummary
Source§fn default() -> LevelSummary
fn default() -> LevelSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LevelSummary
impl<'de> Deserialize<'de> for LevelSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LevelSummary
impl RefUnwindSafe for LevelSummary
impl Send for LevelSummary
impl Sync for LevelSummary
impl Unpin for LevelSummary
impl UnwindSafe for LevelSummary
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