pub trait Progress {
    fn set_message(&self, msg: impl Into<Cow<'static, str>>);
    fn increment(&self, delta: u64);
}
Expand description

Trait for propagating progress information while constructing the package.

Required Methods

Updates the message displayed regarding progress constructing the package.

Increments the number of things which have completed.

Implementors