struct Friendly<F: FieldExtract + 'static> {
_ghost: PhantomData<F>,
}
Fields§
§_ghost: PhantomData<F>
Trait Implementations§
Source§impl<F: FieldExtract + 'static> ProgressTracker for Friendly<F>
impl<F: FieldExtract + 'static> ProgressTracker for Friendly<F>
Source§fn clone_box(&self) -> Box<dyn ProgressTracker>
fn clone_box(&self) -> Box<dyn ProgressTracker>
Creates a new instance of the progress tracker
Source§fn reset(&mut self, _state: &ProgressState, _now: Instant)
fn reset(&mut self, _state: &ProgressState, _now: Instant)
Notifies the progress tracker of a reset event
Source§fn tick(&mut self, _state: &ProgressState, _now: Instant)
fn tick(&mut self, _state: &ProgressState, _now: Instant)
Notifies the progress tracker of a tick event
Source§fn write(&self, state: &ProgressState, w: &mut dyn Write)
fn write(&self, state: &ProgressState, w: &mut dyn Write)
Provides access to the progress bar display buffer for custom messages
Auto Trait Implementations§
impl<F> Freeze for Friendly<F>
impl<F> RefUnwindSafe for Friendly<F>where
F: RefUnwindSafe,
impl<F> Send for Friendly<F>
impl<F> Sync for Friendly<F>
impl<F> Unpin for Friendly<F>where
F: Unpin,
impl<F> UnwindSafe for Friendly<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more