Enum indicatif::ProgressFinish
source · [−]pub enum ProgressFinish {
AndLeave,
AtCurrentPos,
WithMessage(Cow<'static, str>),
AndClear,
Abandon,
AbandonWithMessage(Cow<'static, str>),
}
Expand description
Behavior of a progress bar when it is finished
This is invoked when a ProgressBar
or ProgressBarIter
completes and
ProgressBar::is_finished
is false.
Variants
AndLeave
Finishes the progress bar and leaves the current message
Same behavior as calling ProgressBar::finish()
.
AtCurrentPos
Finishes the progress bar at current position and leaves the current message
Same behavior as calling ProgressBar::finish_at_current_pos()
.
WithMessage(Cow<'static, str>)
Finishes the progress bar and sets a message
Same behavior as calling ProgressBar::finish_with_message()
.
AndClear
Finishes the progress bar and completely clears it (this is the default)
Same behavior as calling ProgressBar::finish_and_clear()
.
Abandon
Finishes the progress bar and leaves the current message and progress
Same behavior as calling ProgressBar::abandon()
.
AbandonWithMessage(Cow<'static, str>)
Finishes the progress bar and sets a message, and leaves the current progress
Same behavior as calling ProgressBar::abandon_with_message()
.
Trait Implementations
sourceimpl Clone for ProgressFinish
impl Clone for ProgressFinish
sourcefn clone(&self) -> ProgressFinish
fn clone(&self) -> ProgressFinish
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ProgressFinish
impl Debug for ProgressFinish
Auto Trait Implementations
impl RefUnwindSafe for ProgressFinish
impl Send for ProgressFinish
impl Sync for ProgressFinish
impl Unpin for ProgressFinish
impl UnwindSafe for ProgressFinish
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more