pub enum ProgressStyle {
Solid,
Ascii,
Block,
Line,
}Expand description
Visual style for the progress bar.
Variants§
Solid
Classic solid bar: ████████░░░░
Ascii
ASCII style: [======== ]
Block
Block characters: ▓▓▓▓▓▓░░░░
Line
Thin line: ───────────
Trait Implementations§
Source§impl Clone for ProgressStyle
impl Clone for ProgressStyle
Source§fn clone(&self) -> ProgressStyle
fn clone(&self) -> ProgressStyle
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 ProgressStyle
impl Debug for ProgressStyle
Source§impl Default for ProgressStyle
impl Default for ProgressStyle
Source§fn default() -> ProgressStyle
fn default() -> ProgressStyle
Returns the “default value” for a type. Read more
Source§impl PartialEq for ProgressStyle
impl PartialEq for ProgressStyle
impl Copy for ProgressStyle
impl Eq for ProgressStyle
impl StructuralPartialEq for ProgressStyle
Auto Trait Implementations§
impl Freeze for ProgressStyle
impl RefUnwindSafe for ProgressStyle
impl Send for ProgressStyle
impl Sync for ProgressStyle
impl Unpin 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