pub struct TrackingStats {
pub total: u32,
pub cumulative: u32,
pub pace: u32,
pub percent_complete: u32,
pub days_elapsed: u32,
pub days_remaining: u32,
pub days_total: u32,
pub is_complete: bool,
pub daily: Vec<TrackingStatsDaily>,
}Fields§
§total: u32§cumulative: u32§pace: u32§percent_complete: u32§days_elapsed: u32§days_remaining: u32§days_total: u32§is_complete: bool§daily: Vec<TrackingStatsDaily>Trait Implementations§
Source§impl Clone for TrackingStats
impl Clone for TrackingStats
Source§fn clone(&self) -> TrackingStats
fn clone(&self) -> TrackingStats
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 TrackingStats
impl Debug for TrackingStats
Source§impl<'de> Deserialize<'de> for TrackingStats
impl<'de> Deserialize<'de> for TrackingStats
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 TrackingStats
impl RefUnwindSafe for TrackingStats
impl Send for TrackingStats
impl Sync for TrackingStats
impl Unpin for TrackingStats
impl UnsafeUnpin for TrackingStats
impl UnwindSafe for TrackingStats
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