Struct bigml::resource::script::Script[][src]

pub struct Script {
    pub common: ResourceCommon,
    pub resource: Id<Script>,
    pub status: GenericStatus,
    pub source_code: String,
    // some fields omitted
}

A WhizzML script on BigML.

TODO: Still lots of missing fields.

Fields

Common resource information. These fields will be serialized at the top-level of this structure by serde.

The ID of this resource.

The status of this resource.

The source code of this script.

Trait Implementations

impl Clone for Script
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Script
[src]

Formats the value using the given formatter. Read more

impl Resource for Script
[src]

The prefix used for all IDs of this type.

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

Fields shared between all resource types. These are "flattened" into the top-level of the JSON version of this resource. Read more

The ID of this resource.

The status code for this resource. Read more

Auto Trait Implementations

impl Send for Script

impl Sync for Script