pub enum ProgressStyle {
Number,
Percentage,
Empty,
}Variants§
Number
A number that shows how many actions have been finished and how many actions there are. Example: 23/57
Percentage
A percentage of the completed work is shown. Example: 32%
Empty
No indication of progression is shown next to the progress bar.
Auto Trait Implementations§
impl Freeze for ProgressStyle
impl RefUnwindSafe for ProgressStyle
impl Send for ProgressStyle
impl Sync for ProgressStyle
impl Unpin for ProgressStyle
impl UnsafeUnpin for ProgressStyle
impl UnwindSafe for ProgressStyle
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