Trait Progress

Source
pub trait Progress: Send {
    type SubProgress: Progress;

Show 20 methods // Required methods fn add_child(&mut self, name: impl Into<String>) -> Self::SubProgress; fn add_child_with_id( &mut self, name: impl Into<String>, id: [u8; 4], ) -> Self::SubProgress; fn init(&mut self, max: Option<usize>, unit: Option<Unit>); fn set(&mut self, step: usize); fn step(&self) -> usize; fn inc_by(&mut self, step: usize); fn set_name(&mut self, name: impl Into<String>); fn name(&self) -> Option<String>; fn id(&self) -> [u8; 4]; fn message(&mut self, level: MessageLevel, message: impl Into<String>); // Provided methods fn unit(&self) -> Option<Unit> { ... } fn max(&self) -> Option<usize> { ... } fn set_max(&mut self, _max: Option<usize>) -> Option<usize> { ... } fn inc(&mut self) { ... } fn counter(&self) -> Option<Arc<AtomicUsize>> { ... } fn info(&mut self, message: impl Into<String>) { ... } fn done(&mut self, message: impl Into<String>) { ... } fn fail(&mut self, message: impl Into<String>) { ... } fn show_throughput(&mut self, start: Instant) { ... } fn show_throughput_with( &mut self, start: Instant, step: usize, unit: Unit, level: MessageLevel, ) { ... }
}
Available on crate feature progress only.
Expand description

A trait for describing hierarchical process.

Required Associated Types§

Source

type SubProgress: Progress

The type of progress returned by add_child().

Required Methods§

Source

fn add_child(&mut self, name: impl Into<String>) -> Self::SubProgress

Adds a new child, whose parent is this instance, with the given name.

This will make the child progress to appear contained in the parent progress. Note that such progress does not have a stable identifier, which can be added with add_child_with_id() if desired.

Source

fn add_child_with_id( &mut self, name: impl Into<String>, id: [u8; 4], ) -> Self::SubProgress

Adds a new child, whose parent is this instance, with the given name and id.

This will make the child progress to appear contained in the parent progress, and it can be identified using id.

Source

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

Initialize the Item for receiving progress information.

If max is Some(…), it will be treated as upper bound. When progress is set(…) it should not exceed the given maximum. If max is None, the progress is unbounded. Use this if the amount of work cannot accurately be determined in advance.

If unit is Some(…), it is used for display purposes only. See prodash::Unit for more information.

If both unit and max are None, the item will be reset to be equivalent to ‘uninitialized’.

If this method is never called, this Progress instance will serve as organizational unit, useful to add more structure to the progress tree (e.g. a headline).

Note that this method can be called multiple times, changing the bounded-ness and unit at will.

Source

fn set(&mut self, step: usize)

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

Note: that this call has no effect unless init(…) was called before.

Source

fn step(&self) -> usize

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

Source

fn inc_by(&mut self, step: usize)

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

Source

fn set_name(&mut self, name: impl Into<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) -> [u8; 4]

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

Source

fn message(&mut self, level: MessageLevel, message: impl Into<String>)

Create a message of the given level and store it with the progress tree.

Use this to provide additional,human-readable information about the progress made, including indicating success or failure.

Provided Methods§

Source

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

Returns the (cloned) unit associated with this Progress

Source

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

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

Source

fn set_max(&mut self, _max: Option<usize>) -> Option<usize>

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

Source

fn inc(&mut 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) -> Option<Arc<AtomicUsize>>

If available, return an atomic counter for direct access to the underlying state.

This is useful if multiple threads want to access the same progress, without the need for provide each their own progress and aggregating the result.

Source

fn info(&mut self, message: impl Into<String>)

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

Source

fn done(&mut self, message: impl Into<String>)

Create a message indicating the task is done successfully

Source

fn fail(&mut self, message: impl Into<String>)

Create a message indicating the task failed

Source

fn show_throughput(&mut self, start: Instant)

A shorthand to print throughput information

Source

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

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a, T> Progress for &'a mut T
where T: Progress,

Source§

type SubProgress = <T as Progress>::SubProgress

Source§

fn add_child( &mut self, name: impl Into<String>, ) -> <&'a mut T as Progress>::SubProgress

Source§

fn add_child_with_id( &mut self, name: impl Into<String>, id: [u8; 4], ) -> <&'a mut T as Progress>::SubProgress

Source§

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

Source§

fn set(&mut self, step: usize)

Source§

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

Source§

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

Source§

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

Source§

fn step(&self) -> usize

Source§

fn inc_by(&mut self, step: usize)

Source§

fn inc(&mut self)

Source§

fn set_name(&mut self, name: impl Into<String>)

Source§

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

Source§

fn id(&self) -> [u8; 4]

Source§

fn message(&mut self, level: MessageLevel, message: impl Into<String>)

Source§

fn counter(&self) -> Option<Arc<AtomicUsize>>

Source§

fn info(&mut self, message: impl Into<String>)

Source§

fn done(&mut self, message: impl Into<String>)

Source§

fn fail(&mut self, message: impl Into<String>)

Source§

fn show_throughput(&mut self, start: Instant)

Source§

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

Implementors§