Struct indicatif::ProgressStyle [−][src]
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.
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]
Returns the tick string for a given number.
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]
Returns the tick string for the finished state.
Trait Implementations
impl Clone for ProgressStyle
[src]
fn clone(&self) -> ProgressStyle
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ProgressStyle
[src]
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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,