[][src]Enum prodash::tree::ProgressState

pub enum ProgressState {
    Blocked(&'static strOption<SystemTime>),
    Halted(&'static strOption<SystemTime>),
    Running,
}

Indicate whether a progress can or cannot be made.

Variants

Blocked(&'static strOption<SystemTime>)

Indicates a task is blocked and cannot indicate progress, optionally until the given time. The task cannot easily be interrupted.

Halted(&'static strOption<SystemTime>)

Indicates a task cannot indicate progress, optionally until the given time. The task can be interrupted.

Running

The task is running

Trait Implementations

impl Clone for ProgressState[src]

impl Copy for ProgressState[src]

impl Debug for ProgressState[src]

impl Default for ProgressState[src]

impl Eq for ProgressState[src]

impl Hash for ProgressState[src]

impl Ord for ProgressState[src]

impl PartialEq<ProgressState> for ProgressState[src]

impl PartialOrd<ProgressState> for ProgressState[src]

impl StructuralEq for ProgressState[src]

impl StructuralPartialEq for ProgressState[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.