pub enum ProgressMode {
Determinate(f32),
Indeterminate {
phase: usize,
},
}Expand description
Progress bar mode.
Variants§
Trait Implementations§
Source§impl Clone for ProgressMode
impl Clone for ProgressMode
Source§fn clone(&self) -> ProgressMode
fn clone(&self) -> ProgressMode
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 ProgressMode
impl Debug for ProgressMode
Source§impl PartialEq for ProgressMode
impl PartialEq for ProgressMode
impl StructuralPartialEq for ProgressMode
Auto Trait Implementations§
impl Freeze for ProgressMode
impl RefUnwindSafe for ProgressMode
impl Send for ProgressMode
impl Sync for ProgressMode
impl Unpin for ProgressMode
impl UnwindSafe for ProgressMode
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