[][src]Struct progress_logger::ProgressLoggerBuilder

pub struct ProgressLoggerBuilder { /* fields omitted */ }

Builds a new progress logger. All the configurations are optional, To obtain a builder, use ProgressLogger::builder().

Implementations

impl ProgressLoggerBuilder[src]

pub fn with_expected_updates<N: Into<u64>>(self, updates: N) -> Self[src]

Configure the expected number of updates.

pub fn with_items_name<S: Into<String>>(self, name: S) -> Self[src]

Set the name of the items being counted.

pub fn with_frequency(self, freq: Duration) -> Self[src]

Set the frequency of reports on the console.

pub fn start(self) -> ProgressLogger[src]

Builds the ProgressLogger, starting the internal timer.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.