Skip to main content

AsProgress

Trait AsProgress 

Source
pub trait AsProgress {
    // Required method
    fn as_progress(&self, max: usize) -> Arc<dyn Progress>;
}
Expand description

Enable lazy creation of a progress reporter for the long running build operation.

See: Progress.

Required Methods§

Source

fn as_progress(&self, max: usize) -> Arc<dyn Progress>

Construct a progress reporter for an operation consisting of max points.

Implementors§