Type Alias BoxedProgress

Source
pub type BoxedProgress = Box<dyn Progress>;
Expand description

An owned version of Progress which can itself implement said trait.

Aliased Type§

pub struct BoxedProgress(/* private fields */);

Trait Implementations§

Source§

impl Count for BoxedProgress

Source§

fn set(&self, step: Step)

Set the current progress to the given step. The cost of this call is negligible, making manual throttling not necessary. Read more
Source§

fn step(&self) -> Step

Returns the current step, as controlled by inc*(…) calls
Source§

fn inc_by(&self, step: Step)

Increment the current progress to the given step. The cost of this call is negligible, making manual throttling not necessary.
Source§

fn inc(&self)

Increment the current progress to the given 1. The cost of this call is negligible, making manual throttling not necessary.
Source§

fn counter(&self) -> StepShared

Return an atomic counter for direct access to the underlying state. Read more
Source§

impl Progress for BoxedProgress

Source§

fn init(&mut self, max: Option<Step>, unit: Option<Unit>)

Initialize the Item for receiving progress information. Read more
Source§

fn unit(&self) -> Option<Unit>

Returns the (cloned) unit associated with this Progress
Source§

fn max(&self) -> Option<Step>

Returns the maximum about of items we expect, as provided with the init(…) call
Source§

fn set_max(&mut self, max: Option<Step>) -> Option<Step>

Set the maximum value to max and return the old maximum value.
Source§

fn set_name(&mut self, name: String)

Set the name of the instance, altering the value given when crating it with add_child(…) The progress is allowed to discard it.
Source§

fn name(&self) -> Option<String>

Get the name of the instance as given when creating it with add_child(…) The progress is allowed to not be named, thus there is no guarantee that a previously set names ‘sticks’.
Source§

fn id(&self) -> Id

Get a stable identifier for the progress instance. Note that it could be unknown.
Source§

fn message(&self, level: MessageLevel, message: String)

Create a message of the given level and store it with the progress tree. Read more
Source§

fn show_throughput(&self, start: Instant)

A shorthand to print throughput information
Source§

fn show_throughput_with( &self, start: Instant, step: Step, unit: Unit, level: MessageLevel, )

A shorthand to print throughput information, with the given step and unit, and message level.
Source§

fn info(&self, message: String)

Create a message providing additional information about the progress thus far.
Source§

fn done(&self, message: String)

Create a message indicating the task is done successfully
Source§

fn fail(&self, message: String)

Create a message indicating the task failed