Struct git_features::progress::ThroughputOnDrop [−][src]
pub struct ThroughputOnDrop<T>(_, _)
where
T: Progress;
Emit a message with throughput information when the instance is dropped.
Implementations
impl<T> ThroughputOnDrop<T> where
T: Progress,
[src]
impl<T> ThroughputOnDrop<T> where
T: Progress,
[src]pub fn new(inner: T) -> ThroughputOnDrop<T>
[src]
pub fn new(inner: T) -> ThroughputOnDrop<T>
[src]Create a new instance by providing the inner
Progress
implementation.
Trait Implementations
impl<T> Drop for ThroughputOnDrop<T> where
T: Progress,
[src]
impl<T> Drop for ThroughputOnDrop<T> where
T: Progress,
[src]impl<T> Progress for ThroughputOnDrop<T> where
T: Progress,
[src]
impl<T> Progress for ThroughputOnDrop<T> where
T: Progress,
[src]type SubProgress = <T as Progress>::SubProgress
type SubProgress = <T as Progress>::SubProgress
The type of progress returned by add_child()
.
pub fn add_child(
&mut self,
name: impl Into<String>
) -> <ThroughputOnDrop<T> as Progress>::SubProgress
[src]
pub fn add_child(
&mut self,
name: impl Into<String>
) -> <ThroughputOnDrop<T> as Progress>::SubProgress
[src]Adds a new child, whose parent is this instance, with the given name. Read more
pub fn init(&mut self, max: Option<usize>, unit: Option<Unit>)
[src]
pub fn init(&mut self, max: Option<usize>, unit: Option<Unit>)
[src]Initialize the Item for receiving progress information. Read more
pub fn set(&mut self, step: usize)
[src]
pub fn set(&mut self, step: usize)
[src]Set the current progress to the given step
. The cost of this call is negligible,
making manual throttling not necessary. Read more
pub fn max(&self) -> Option<usize>
[src]
pub fn max(&self) -> Option<usize>
[src]Returns the maximum about of items we expect, as provided with the init(…)
call
pub fn inc_by(&mut self, step: usize)
[src]
pub fn inc_by(&mut self, step: usize)
[src]Increment the current progress to the given step
.
The cost of this call is negligible, making manual throttling not necessary. Read more
pub fn set_name(&mut self, name: impl Into<String>)
[src]
pub fn set_name(&mut self, name: impl Into<String>)
[src]Set the name of the instance, altering the value given when crating it with add_child(…)
The progress is allowed to discard it. Read more
pub fn name(&self) -> Option<String>
[src]
pub fn name(&self) -> Option<String>
[src]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’. Read more
pub fn message(&mut self, level: MessageLevel, message: impl Into<String>)
[src]
pub fn message(&mut self, level: MessageLevel, message: impl Into<String>)
[src]Create a message
of the given level
and store it with the progress tree. Read more
fn inc(&mut self)
[src]
fn inc(&mut self)
[src]Increment the current progress to the given 1. The cost of this call is negligible, making manual throttling not necessary. Read more
fn info(&mut self, message: impl Into<String>)
[src]
fn info(&mut self, message: impl Into<String>)
[src]Create a message providing additional information about the progress thus far.
fn done(&mut self, message: impl Into<String>)
[src]
fn done(&mut self, message: impl Into<String>)
[src]Create a message indicating the task is done successfully
fn show_throughput(&mut self, start: Instant)
[src]
fn show_throughput(&mut self, start: Instant)
[src]A shorthand to print throughput information
fn show_throughput_with(&mut self, start: Instant, step: usize, unit: Unit)
[src]
fn show_throughput_with(&mut self, start: Instant, step: usize, unit: Unit)
[src]A shorthand to print throughput information, with the given step and unit
Auto Trait Implementations
impl<T> RefUnwindSafe for ThroughputOnDrop<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for ThroughputOnDrop<T>
impl<T> Sync for ThroughputOnDrop<T> where
T: Sync,
T: Sync,
impl<T> Unpin for ThroughputOnDrop<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for ThroughputOnDrop<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self