[][src]Enum bigml::resource::StatusCode

pub enum StatusCode {
    Waiting,
    Queued,
    Started,
    InProgress,
    Summarized,
    Finished,
    Faulty,
    Unknown,
}

A BigML status code.

Variants

Waiting

BigML is waiting on another resource before processing this one.

Queued

The processing job has been added to the queue.

Started

Actual processing has started.

InProgress

Part of the job has been performed.

Summarized

Summary statistics for a dataset are available.

Finished

The resource is ready.

Faulty

Something went wrong processing the task.

Unknown

Something has gone wrong in BigML, perhaps an outage.

Methods

impl StatusCode[src]

pub fn is_working(self) -> bool[src]

Is BigML still working on ingesting and processing this resource?

pub fn is_ready(self) -> bool[src]

Has BigML successfully finished processing this resource?

pub fn is_err(self) -> bool[src]

Did something go wrong while processing this resource?

Trait Implementations

impl Clone for StatusCode[src]

impl Copy for StatusCode[src]

impl Eq for StatusCode[src]

impl PartialEq<StatusCode> for StatusCode[src]

impl Debug for StatusCode[src]

impl StructuralPartialEq for StatusCode[src]

impl StructuralEq for StatusCode[src]

impl Serialize for StatusCode[src]

impl<'de> Deserialize<'de> for StatusCode[src]

Auto Trait Implementations

Blanket Implementations

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 = !

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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