pub struct Discard;
Available on crate feature
progress
only.Expand description
An implementation of Progress
which discards all calls.
Trait Implementations§
Source§impl Progress for Discard
impl Progress for Discard
Source§type SubProgress = Discard
type SubProgress = Discard
The type of progress returned by
add_child()
.Source§fn add_child(
&mut self,
_name: impl Into<String>,
) -> <Discard as Progress>::SubProgress
fn add_child( &mut self, _name: impl Into<String>, ) -> <Discard as Progress>::SubProgress
Adds a new child, whose parent is this instance, with the given
name
. Read moreSource§fn add_child_with_id(
&mut self,
_name: impl Into<String>,
_id: [u8; 4],
) -> <Discard as Progress>::SubProgress
fn add_child_with_id( &mut self, _name: impl Into<String>, _id: [u8; 4], ) -> <Discard as Progress>::SubProgress
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(&mut self, _step: usize)
fn set(&mut 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 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 inc_by(&mut self, _step: usize)
fn inc_by(&mut self, _step: usize)
Increment the current progress to the given
step
.
The cost of this call is negligible, making manual throttling not necessary.Source§fn set_name(&mut self, _name: impl Into<String>)
fn set_name(&mut self, _name: impl Into<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 counter(&self) -> Option<Arc<AtomicUsize>>
fn counter(&self) -> Option<Arc<AtomicUsize>>
If available, return an atomic counter for direct access to the underlying state. Read more
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 inc(&mut self)
fn inc(&mut self)
Increment the current progress to the given 1. The cost of this call is negligible,
making manual throttling not necessary.
Source§fn info(&mut self, message: impl Into<String>)
fn info(&mut self, message: impl Into<String>)
Create a message providing additional information about the progress thus far.
Source§fn done(&mut self, message: impl Into<String>)
fn done(&mut self, message: impl Into<String>)
Create a message indicating the task is done successfully
Source§fn show_throughput(&mut self, start: Instant)
fn show_throughput(&mut self, start: Instant)
A shorthand to print throughput information
Source§fn show_throughput_with(
&mut self,
start: Instant,
step: usize,
unit: Unit,
level: MessageLevel,
)
fn show_throughput_with( &mut 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> 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