CircularProgressBarExt

Trait CircularProgressBarExt 

Source
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§

Source

fn circular_progress_bar(&mut self, progress: f32) -> Response

Add a circular progress bar

Source

fn circular_progress_bar_with_size( &mut self, progress: f32, size: f32, ) -> Response

Add a circular progress bar with custom size

Source

fn circular_progress_bar_indeterminate(&mut self) -> Response

Add an indeterminate circular progress bar (animated)

Implementations on Foreign Types§

Source§

impl CircularProgressBarExt for Ui

Implementors§