pub struct ProgressBar { /* private fields */ }
Expand description
A simple progress bar.
See also: crate::Spinner
.
Implementations§
Source§impl ProgressBar
impl ProgressBar
Sourcepub fn desired_width(self, desired_width: f32) -> Self
pub fn desired_width(self, desired_width: f32) -> Self
The desired width of the bar. Will use all horizontal space if not set.
Sourcepub fn desired_height(self, desired_height: f32) -> Self
pub fn desired_height(self, desired_height: f32) -> Self
The desired height of the bar. Will use the default interaction size if not set.
Sourcepub fn text(self, text: impl Into<WidgetText>) -> Self
pub fn text(self, text: impl Into<WidgetText>) -> Self
A custom text to display on the progress bar.
Sourcepub fn show_percentage(self) -> Self
pub fn show_percentage(self) -> Self
Show the progress in percent on the progress bar.
Sourcepub fn animate(self, animate: bool) -> Self
pub fn animate(self, animate: bool) -> Self
Whether to display a loading animation when progress < 1
.
Note that this will cause the UI to be redrawn.
Defaults to false
.
If Self::corner_radius
and Self::animate
are used simultaneously, the animation is not
rendered, since it requires a perfect circle to render correctly. However, the UI is still
redrawn.
Sourcepub fn corner_radius(self, corner_radius: impl Into<CornerRadius>) -> Self
pub fn corner_radius(self, corner_radius: impl Into<CornerRadius>) -> Self
Set the rounding of the progress bar.
If Self::corner_radius
and Self::animate
are used simultaneously, the animation is not
rendered, since it requires a perfect circle to render correctly. However, the UI is still
redrawn.
pub fn rounding(self, corner_radius: impl Into<CornerRadius>) -> Self
corner_radius
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 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
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>
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>
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