pub enum ProgressFinish {
AndLeave,
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()
.
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§
Source§impl Clone for ProgressFinish
impl Clone for ProgressFinish
Source§fn clone(&self) -> ProgressFinish
fn clone(&self) -> ProgressFinish
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProgressFinish
impl Debug for ProgressFinish
Auto Trait Implementations§
impl Freeze for ProgressFinish
impl RefUnwindSafe for ProgressFinish
impl Send for ProgressFinish
impl Sync for ProgressFinish
impl Unpin for ProgressFinish
impl UnwindSafe for ProgressFinish
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)