pub trait StateProgress {
// Required method
fn progress(&self) -> f32;
}Available on crate feature
progress only.Expand description
Represents state that can be converted to progress.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".