pub struct ChecklistProgress {
pub completed: u32,
pub total: u32,
}Expand description
Summary of checklist completion progress.
Fields§
§completed: u32Number of completed steps.
total: u32Total number of steps.
Trait Implementations§
Source§impl Clone for ChecklistProgress
impl Clone for ChecklistProgress
Source§fn clone(&self) -> ChecklistProgress
fn clone(&self) -> ChecklistProgress
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 ChecklistProgress
impl Debug for ChecklistProgress
Source§impl<'de> Deserialize<'de> for ChecklistProgress
impl<'de> Deserialize<'de> for ChecklistProgress
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 ChecklistProgress
impl PartialEq for ChecklistProgress
Source§impl Serialize for ChecklistProgress
impl Serialize for ChecklistProgress
impl Eq for ChecklistProgress
impl StructuralPartialEq for ChecklistProgress
Auto Trait Implementations§
impl Freeze for ChecklistProgress
impl RefUnwindSafe for ChecklistProgress
impl Send for ChecklistProgress
impl Sync for ChecklistProgress
impl Unpin for ChecklistProgress
impl UnsafeUnpin for ChecklistProgress
impl UnwindSafe for ChecklistProgress
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