pub trait ApplyProgress {
    fn apply_progress(self, total: &ProgressCounter);
}
Expand description

Trait for all types that can be returned by systems to report progress

Required Methods

Account the value into the total progress for this frame

Implementations on Foreign Types

Implementors