Trait DynOperationProgress

Source
pub trait DynOperationProgress {
    // Required methods
    fn update(&mut self, operation: String, percent: f32);
    fn done(&mut self);
}
Expand description

Customize the output of operation progress on things like opening the cache.

Required Methods§

Source

fn update(&mut self, operation: String, percent: f32)

Source

fn done(&mut self)

Implementors§