pub struct Attempt {
    pub weight: u32,
    pub reps: u32,
}Expand description
Represents an attempt within a set, specifying the weight used and the repetitions completed.
Part of a Set instance.
Fields§
§weight: u32The weight lifted in this attempt, in kilograms.
reps: u32The number of repetitions completed in this attempt.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Attempt
impl RefUnwindSafe for Attempt
impl Send for Attempt
impl Sync for Attempt
impl Unpin for Attempt
impl UnwindSafe for Attempt
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