pub struct Progress { /* private fields */ }Expand description
Progress bar styled like shadcn/ui
A simple horizontal progress indicator.
§Example
use armas_basic::Progress;
// Basic progress (0-100)
Progress::new(65.0).show(ui);
// With custom width
Progress::new(33.0).width(200.0).show(ui);Implementations§
Auto Trait Implementations§
impl Freeze for Progress
impl RefUnwindSafe for Progress
impl Send for Progress
impl Sync for Progress
impl Unpin for Progress
impl UnsafeUnpin for Progress
impl UnwindSafe for Progress
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