Struct bigml::resource::batchcentroid::BatchCentroid[][src]

pub struct BatchCentroid {
    pub common: ResourceCommon,
    pub resource: Id<BatchCentroid>,
    pub status: GenericStatus,
    pub all_fields: bool,
    pub output_dataset_status: bool,
    // some fields omitted
}

A batch centroid generated by 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 source.

Does this centroid include all the fields in the input?

Is our output dataset currently available?

Trait Implementations

impl Clone for BatchCentroid
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BatchCentroid
[src]

Formats the value using the given formatter. Read more

impl Resource for BatchCentroid
[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