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

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

Required Methods§

source

fn apply_progress(self, total: &ProgressCounter)

Account the value into the total progress for this frame

Implementations on Foreign Types§

source§

impl<T: ApplyProgress> ApplyProgress for (T, T)

Implementors§