[][src]Trait termprogress::ProgressBar

pub trait ProgressBar: Display {
    fn set_progress(&mut self, value: f64);
fn get_progress(&self) -> f64; }

A trait for any bar with progress. You can implemnent your own styles through this trait.

Required methods

fn set_progress(&mut self, value: f64)

fn get_progress(&self) -> f64

Loading content...

Implementors

impl ProgressBar for Bar[src]

Loading content...