Struct indicatif::ProgressStyle [−][src]
pub struct ProgressStyle { /* fields omitted */ }Expand description
Controls the rendering style of progress bars.
Implementations
impl ProgressStyle[src]
impl ProgressStyle[src]pub fn default_bar() -> ProgressStyle[src]
pub fn default_bar() -> ProgressStyle[src]Returns the default progress bar style for bars.
pub fn default_spinner() -> ProgressStyle[src]
pub fn default_spinner() -> ProgressStyle[src]Returns the default progress bar style for spinners.
pub fn tick_chars(self, s: &str) -> ProgressStyle[src]
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]
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]
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]
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
pub fn get_tick_char(&self, idx: u64) -> char[src]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]
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
pub fn get_final_tick_char(&self) -> char[src]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]
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 Clone for ProgressStyle[src]fn clone(&self) -> 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]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl RefUnwindSafe for ProgressStyle
impl Send for ProgressStyle
impl Sync for ProgressStyle
impl Unpin for ProgressStyle
impl UnwindSafe for ProgressStyle
Blanket Implementations
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
    T: Clone, [src]
impl<T> ToOwned for T where
    T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
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]
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