Enum gix_features::progress::Either
source · pub enum Either<L, R> {
Left(L),
Right(R),
}Available on crate feature
progress only.Expand description
An implementation of Progress showing either one or the other implementation.
Useful in conjunction with Discard and a working implementation, making it as a form of Option<Progress> which
can be passed to methods requiring impl Progress.
See DoOrDiscard for an incarnation of this.
Variants§
Trait Implementations§
source§impl<L, R> Progress for Either<L, R>where
L: Progress,
R: Progress,
impl<L, R> Progress for Either<L, R>where L: Progress, R: Progress,
§type SubProgress = Either<<L as Progress>::SubProgress, <R as Progress>::SubProgress>
type SubProgress = Either<<L as Progress>::SubProgress, <R as Progress>::SubProgress>
The type of progress returned by
add_child().source§fn add_child(
&mut self,
name: impl Into<String>
) -> <Either<L, R> as Progress>::SubProgress
fn add_child( &mut self, name: impl Into<String> ) -> <Either<L, R> 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]
) -> <Either<L, R> as Progress>::SubProgress
fn add_child_with_id( &mut self, name: impl Into<String>, id: [u8; 4] ) -> <Either<L, R> 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 max(&self) -> Option<usize>
fn max(&self) -> Option<usize>
Returns the maximum about of items we expect, as provided with the
init(…) callsource§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 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(&self, message: impl Into<String>)
fn info(&self, message: impl Into<String>)
Create a message providing additional information about the progress thus far.
source§fn done(&self, message: impl Into<String>)
fn done(&self, message: impl Into<String>)
Create a message indicating the task is done successfully
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<L, R> RefUnwindSafe for Either<L, R>where L: RefUnwindSafe, R: RefUnwindSafe,
impl<L, R> Send for Either<L, R>where L: Send, R: Send,
impl<L, R> Sync for Either<L, R>where L: Sync, R: Sync,
impl<L, R> Unpin for Either<L, R>where L: Unpin, R: Unpin,
impl<L, R> UnwindSafe for Either<L, R>where L: UnwindSafe, R: 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
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> RawProgress for Twhere
T: Progress,
impl<T> RawProgress for Twhere T: Progress,
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 max(&self) -> Option<usize>
fn max(&self) -> Option<usize>
Returns the maximum about of items we expect, as provided with the
init(…) callsource§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 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 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 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 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.