pub enum ProgressFnKind {
PERCENT,
PROGRESS,
}
Expand description
Describes the semantics of the return value of the progress function.
Variants§
PERCENT
Progress report function returns percentage from 0 to 100.
PROGRESS
Progress report function returns total progress in processed elements from total.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProgressFnKind
impl RefUnwindSafe for ProgressFnKind
impl Send for ProgressFnKind
impl Sync for ProgressFnKind
impl Unpin for ProgressFnKind
impl UnwindSafe for ProgressFnKind
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