Enum indicatif::ProgressFinish[][src]

pub enum ProgressFinish {
    AndLeave,
    AtCurrentPos,
    WithMessage(Cow<'static, str>),
    AndClear,
    Abandon,
    AbandonWithMessage(Cow<'static, str>),
}

Behavior of a progress bar when it is finished. This is invoked when a [ProgressBar] or ProgresBarIter 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 behavior. 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

impl Clone for ProgressFinish[src]

impl Debug for ProgressFinish[src]

impl Default for ProgressFinish[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.