Trait gmt_dos_clients::Progress

source ·
pub trait Progress {
    // Required methods
    fn progress<S: Into<String>>(name: S, len: usize) -> Self;
    fn increment(&mut self);

    // Provided method
    fn finish(&mut self) { ... }
}

Required Methods§

source

fn progress<S: Into<String>>(name: S, len: usize) -> Self

source

fn increment(&mut self)

Provided Methods§

source

fn finish(&mut self)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Progress for ProgressBar

source§

fn progress<S: Into<String>>(name: S, len: usize) -> Self

source§

fn increment(&mut self)

source§

fn finish(&mut self)

Implementors§