pub struct ProgressStat {
pub current: usize,
pub total: usize,
}
Expand description
Helper struct for passing progress information to external callers
Fields§
§current: usize
The current amount of work that has been done
total: usize
The total amount of work to do
Auto Trait Implementations§
impl Freeze for ProgressStat
impl RefUnwindSafe for ProgressStat
impl Send for ProgressStat
impl Sync for ProgressStat
impl Unpin for ProgressStat
impl UnwindSafe for ProgressStat
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