Struct bigml::resource::GenericStatus[][src]

pub struct GenericStatus {
    pub code: StatusCode,
    pub message: String,
    pub elapsed: Option<u64>,
    pub progress: Option<f32>,
    // some fields omitted
}

Status of a generic resource.

Fields

Status code.

Human-readable status message.

Number of milliseconds which were needed to create this resource.

Number between 0.0 and 1.0 representing the progress of creating this resource.

Trait Implementations

impl Debug for GenericStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for GenericStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Status for GenericStatus
[src]

Status code.

Human-readable status message.

Number of milliseconds which were needed to create this resource.

Number between 0.0 and 1.0 representing the progress of creating this resource. Read more

Auto Trait Implementations