Struct indicatif::ProgressStyle
[−]
[src]
pub struct ProgressStyle { /* fields omitted */ }
Controls the rendering style of progress bars.
Methods
impl ProgressStyle
[src]
pub fn default_bar() -> ProgressStyle
[src]
Returns the default progress bar style for bars.
pub fn default_spinner() -> ProgressStyle
[src]
Returns the default progress bar style for spinners.
pub fn tick_chars(self, s: &str) -> ProgressStyle
[src]
Sets the tick character sequence for spinners.
pub fn progress_chars(self, s: &str) -> ProgressStyle
[src]
Sets the three progress characters (filled, current, to do)
.
pub fn template(self, s: &str) -> ProgressStyle
[src]
Sets the template string for the progress bar.
impl ProgressStyle
[src]
pub fn get_tick_char(&self, idx: u64) -> char
[src]
Returns the tick char for a given number.
pub fn get_final_tick_char(&self) -> char
[src]
Returns the tick char for the finished state.
Trait Implementations
impl Clone for ProgressStyle
[src]
fn clone(&self) -> ProgressStyle
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more