Struct rustic_core::NoProgressBars
source · pub struct NoProgressBars;Expand description
Don’t show progress bars, only log rudimentary progress information.
Trait Implementations§
source§impl Clone for NoProgressBars
impl Clone for NoProgressBars
source§fn clone(&self) -> NoProgressBars
fn clone(&self) -> NoProgressBars
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for NoProgressBars
impl Debug for NoProgressBars
source§impl ProgressBars for NoProgressBars
impl ProgressBars for NoProgressBars
§type P = NoProgress
type P = NoProgress
The actual type which is able to show the progress
source§fn progress_spinner(&self, prefix: impl Into<Cow<'static, str>>) -> Self::P
fn progress_spinner(&self, prefix: impl Into<Cow<'static, str>>) -> Self::P
Start a new progress spinner. Note that this progress doesn’t get a length and is not advanced, only finished. Read more
source§fn progress_counter(&self, prefix: impl Into<Cow<'static, str>>) -> Self::P
fn progress_counter(&self, prefix: impl Into<Cow<'static, str>>) -> Self::P
Start a new progress which counts something Read more
Start a new progress, which is hidden
impl Copy for NoProgressBars
Auto Trait Implementations§
impl Freeze for NoProgressBars
impl RefUnwindSafe for NoProgressBars
impl Send for NoProgressBars
impl Sync for NoProgressBars
impl Unpin for NoProgressBars
impl UnwindSafe for NoProgressBars
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more