pub struct ProgressBar { /* private fields */ }Expand description
A simple progress bar.
Implementations§
Source§impl ProgressBar
impl ProgressBar
Sourcepub fn new(progress: f32) -> ProgressBar
pub fn new(progress: f32) -> ProgressBar
Progress in the [0, 1] range, where 1 means “completed”.
Sourcepub fn desired_width(self, desired_width: f32) -> ProgressBar
pub fn desired_width(self, desired_width: f32) -> ProgressBar
The desired width of the bar. Will use all horizontal space if not set.
Sourcepub fn text(self, text: impl ToString) -> ProgressBar
pub fn text(self, text: impl ToString) -> ProgressBar
A custom text to display on the progress bar.
Sourcepub fn show_percentage(self) -> ProgressBar
pub fn show_percentage(self) -> ProgressBar
Show the progress in percent on the progress bar.
Sourcepub fn animate(self, animate: bool) -> ProgressBar
pub fn animate(self, animate: bool) -> ProgressBar
Whether to display a loading animation when progress < 1.
Note that this will cause the UI to be redrawn.
Defaults to false.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProgressBar
impl RefUnwindSafe for ProgressBar
impl Send for ProgressBar
impl Sync for ProgressBar
impl Unpin for ProgressBar
impl UnsafeUnpin for ProgressBar
impl UnwindSafe for ProgressBar
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more