Trait omicron_zone_package::progress::Progress
source · pub trait Progress {
// Required methods
fn set_message(&self, msg: Cow<'static, str>);
fn increment(&self, delta: u64);
// Provided method
fn sub_progress(&self, _total: u64) -> Box<dyn Progress> { ... }
}Expand description
Trait for propagating progress information while constructing the package.
Required Methods§
sourcefn set_message(&self, msg: Cow<'static, str>)
fn set_message(&self, msg: Cow<'static, str>)
Updates the message displayed regarding progress constructing the package.