pub struct Discard;
Available on crate feature
progress
only.Expand description
An implementation of NestedProgress
which discards all calls.
Trait Implementations§
source§impl Count for Discard
impl Count for Discard
source§fn set(&self, _step: usize)
fn set(&self, _step: usize)
Set the current progress to the given
step
. The cost of this call is negligible,
making manual throttling not necessary. Read moresource§fn inc_by(&self, _step: usize)
fn inc_by(&self, _step: usize)
Increment the current progress to the given
step
.
The cost of this call is negligible, making manual throttling not necessary.source§impl NestedProgress for Discard
impl NestedProgress for Discard
source§impl Progress for Discard
impl Progress for Discard
source§fn init(&mut self, _max: Option<usize>, _unit: Option<Unit>)
fn init(&mut self, _max: Option<usize>, _unit: Option<Unit>)
Initialize the Item for receiving progress information. Read more
source§fn set_max(&mut self, _max: Option<usize>) -> Option<usize>
fn set_max(&mut self, _max: Option<usize>) -> Option<usize>
Set the maximum value to
max
and return the old maximum value.source§fn set_name(&mut self, _name: String)
fn set_name(&mut self, _name: String)
Set the name of the instance, altering the value given when crating it with
add_child(…)
The progress is allowed to discard it.source§fn name(&self) -> Option<String>
fn name(&self) -> Option<String>
Get the name of the instance as given when creating it with
add_child(…)
The progress is allowed to not be named, thus there is no guarantee that a previously set names ‘sticks’.source§fn id(&self) -> [u8; 4]
fn id(&self) -> [u8; 4]
Get a stable identifier for the progress instance.
Note that it could be unknown.
source§fn message(&self, _level: MessageLevel, _message: String)
fn message(&self, _level: MessageLevel, _message: String)
source§fn max(&self) -> Option<usize>
fn max(&self) -> Option<usize>
Returns the maximum about of items we expect, as provided with the
init(…)
callsource§fn info(&self, message: String)
fn info(&self, message: String)
Create a message providing additional information about the progress thus far.
source§fn show_throughput(&self, start: Instant)
fn show_throughput(&self, start: Instant)
A shorthand to print throughput information
source§fn show_throughput_with(
&self,
start: Instant,
step: usize,
unit: Unit,
level: MessageLevel,
)
fn show_throughput_with( &self, start: Instant, step: usize, unit: Unit, level: MessageLevel, )
A shorthand to print throughput information, with the given step and unit, and message level.
Auto Trait Implementations§
impl Freeze for Discard
impl RefUnwindSafe for Discard
impl Send for Discard
impl Sync for Discard
impl Unpin for Discard
impl UnwindSafe for Discard
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, SubP> DynNestedProgress for T
impl<T, SubP> DynNestedProgress for T
source§fn add_child(&mut self, name: String) -> BoxedDynNestedProgress
fn add_child(&mut self, name: String) -> BoxedDynNestedProgress
source§fn add_child_with_id(
&mut self,
name: String,
id: [u8; 4],
) -> BoxedDynNestedProgress
fn add_child_with_id( &mut self, name: String, id: [u8; 4], ) -> BoxedDynNestedProgress
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