Struct prodash::progress::Log[][src]

pub struct Log { /* fields omitted */ }
Expand description

A Progress implementation which displays progress as it happens without the use of a renderer.

Note that this incurs considerable performance cost as each progress calls ends up getting the system time to see if progress information should actually be emitted.

Implementations

Create a new instance from name while displaying progress information only up to max_level.

Trait Implementations

The type of progress returned by add_child().

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

Initialize the Item for receiving progress information. Read more

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

Returns the (cloned) unit associated with this Progress

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

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

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

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

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’. Read more

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

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

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

Create a message indicating the task is done successfully

Create a message indicating the task failed

A shorthand to print throughput information

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.