pub struct Set {
pub attempts: Vec<Attempt>,
}Expand description
Represents a single set performed within an exercise session, which may contain multiple attempts if the weight or reps were modified mid-set.
Fields§
§attempts: Vec<Attempt>A vector of Attempt instances, representing individual attempts within the set.
Multiple attempts can occur if adjustments are made within the set due to difficulty.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Set
impl RefUnwindSafe for Set
impl Send for Set
impl Sync for Set
impl Unpin for Set
impl UnwindSafe for Set
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