pub trait Percentage {
    // Required method
    fn percentage(&self) -> f32;
}
Expand description

Trait for accessing the percentage of a value.

Required Methods§

source

fn percentage(&self) -> f32

Returns the percentage of the value to draw.

Implementors§