pub struct EpicProgress {
pub done: usize,
pub total: usize,
}Expand description
Progress of an epic: how many children are done vs total.
Fields§
§done: usize§total: usizeTrait Implementations§
Source§impl Clone for EpicProgress
impl Clone for EpicProgress
Source§fn clone(&self) -> EpicProgress
fn clone(&self) -> EpicProgress
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 moreSource§impl Debug for EpicProgress
impl Debug for EpicProgress
Auto Trait Implementations§
impl Freeze for EpicProgress
impl RefUnwindSafe for EpicProgress
impl Send for EpicProgress
impl Sync for EpicProgress
impl Unpin for EpicProgress
impl UnsafeUnpin for EpicProgress
impl UnwindSafe for EpicProgress
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