pub trait CircularProgressBarExt {
// Required methods
fn circular_progress_bar(&mut self, progress: f32) -> Response;
fn circular_progress_bar_with_size(
&mut self,
progress: f32,
size: f32,
) -> Response;
fn circular_progress_bar_indeterminate(&mut self) -> Response;
}Expand description
Extension trait for Ui to add circular progress bar methods
Required Methods§
Sourcefn circular_progress_bar(&mut self, progress: f32) -> Response
fn circular_progress_bar(&mut self, progress: f32) -> Response
Add a circular progress bar
Sourcefn circular_progress_bar_with_size(
&mut self,
progress: f32,
size: f32,
) -> Response
fn circular_progress_bar_with_size( &mut self, progress: f32, size: f32, ) -> Response
Add a circular progress bar with custom size
Sourcefn circular_progress_bar_indeterminate(&mut self) -> Response
fn circular_progress_bar_indeterminate(&mut self) -> Response
Add an indeterminate circular progress bar (animated)