[][src]Struct imdl_indicatif::ProgressStyle

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 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 three progress characters (filled, current, to do).

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

Sets the template string for the progress bar.

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.

Trait Implementations

impl Clone for ProgressStyle[src]

impl Debug for ProgressStyle[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.