Struct egui::widgets::ProgressBar
source · [−]pub struct ProgressBar { /* private fields */ }
Expand description
A simple progress bar.
See also: crate::Spinner
.
Implementations
sourceimpl 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 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.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ProgressBar
impl Send for ProgressBar
impl Sync for ProgressBar
impl Unpin for ProgressBar
impl UnwindSafe for ProgressBar
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more