Struct indicatif::ProgressStyle[][src]

pub struct ProgressStyle { /* fields omitted */ }
Expand description

Controls the rendering style of progress bars

Implementations

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 tick_strings(self, s: &[&str]) -> ProgressStyle[src]

Sets the tick string sequence for spinners

pub fn progress_chars(self, s: &str) -> ProgressStyle[src]

Sets the progress characters (filled, current, to do)

You can pass more then three for a more detailed display. All passed grapheme clusters need to be of equal width.

pub fn template(self, s: &str) -> ProgressStyle[src]

Sets the template string for the progress bar

Review the list of template keys for more information.

pub fn on_finish(self, finish: ProgressFinish) -> ProgressStyle[src]

Sets the finish behavior for the progress bar

This behavior is invoked when ProgressBar or ProgressBarIter completes and ProgressBar::is_finished() is false. If you don’t want the progress bar to be automatically finished then call on_finish(None).

pub fn get_tick_char(&self, idx: u64) -> char[src]

👎 Deprecated since 0.13.0:

Deprecated in favor of get_tick_str

Returns the tick char for a given number

pub fn get_tick_str(&self, idx: u64) -> &str[src]

Returns the tick string for a given number

pub fn get_final_tick_char(&self) -> char[src]

👎 Deprecated since 0.13.0:

Deprecated in favor of get_final_tick_str

Returns the tick char for the finished state

pub fn get_final_tick_str(&self) -> &str[src]

Returns the tick string for the finished state

pub fn get_on_finish(&self) -> &ProgressFinish[src]

Returns the finish behavior

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

impl Debug for ProgressStyle[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.