[][src]Trait termprogress::Spinner

pub trait Spinner: Display {
    fn bump(&mut self);
}

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

Required methods

fn bump(&mut self)

Cause the spinner to increment once.

Loading content...

Implementations on Foreign Types

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

impl Spinner for ![src]

Loading content...

Implementors

impl Spinner for Silent[src]

impl Spinner for Spin[src]

impl<T> Spinner for MaybeSilent<T> where
    T: Spinner
[src]

Loading content...