Struct bigml::resource::execution::Execution [] [src]

pub struct Execution {
    pub category: i64,
    pub code: u16,
    pub dev: Option<bool>,
    pub description: String,
    pub name: String,
    pub shared: bool,
    pub subscription: bool,
    pub tags: Vec<String>,
    pub resource: Id<Execution>,
    pub status: GenericStatus,
    pub execution: Data,
    // some fields omitted
}

An execution of a WhizzML script.

TODO: Still lots of missing fields.

Fields

Used to classify by industry or category. 0 is "Miscellaneous".

An HTTP status code, typically either 201 or 200.

TODO: Deserialize as a reqwest::StatusCode?

Was this created in development mode?

Text describing this resource. May contain limited Markdown.

The name of this resource

Has this been shared using a private link?

Was this created using a subscription plan?

User-defined tags.

The ID of this execution.

The current status of this execution.

Further information about this execution.

Trait Implementations

impl Debug for Execution
[src]

Formats the value using the given formatter.

impl Clone for Execution
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Resource for Execution
[src]

The prefix used for all IDs of this type.

The URL path used to create a new resource of this type.

The ID of this resource.

The status code for this resource. Read more