pub struct WorkoutCount {
pub workout_count: u64,
}Expand description
The total number of workouts on the account.
Fields§
§workout_count: u64The total number of workouts.
Trait Implementations§
Source§impl Clone for WorkoutCount
impl Clone for WorkoutCount
Source§fn clone(&self) -> WorkoutCount
fn clone(&self) -> WorkoutCount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WorkoutCount
Source§impl Debug for WorkoutCount
impl Debug for WorkoutCount
Source§impl Default for WorkoutCount
impl Default for WorkoutCount
Source§fn default() -> WorkoutCount
fn default() -> WorkoutCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkoutCount
impl<'de> Deserialize<'de> for WorkoutCount
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
Source§impl PartialEq for WorkoutCount
impl PartialEq for WorkoutCount
Source§impl Serialize for WorkoutCount
impl Serialize for WorkoutCount
impl StructuralPartialEq for WorkoutCount
Auto Trait Implementations§
impl Freeze for WorkoutCount
impl RefUnwindSafe for WorkoutCount
impl Send for WorkoutCount
impl Sync for WorkoutCount
impl Unpin for WorkoutCount
impl UnsafeUnpin for WorkoutCount
impl UnwindSafe for WorkoutCount
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