Struct google_bigquery2::JobStatus [] [src]

pub struct JobStatus {
    pub state: Option<String>,
    pub errors: Option<Vec<ErrorProto>>,
    pub error_result: Option<ErrorProto>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

[Output-only] Running state of the job.

[Output-only] All errors encountered during the running of the job. Errors here do not necessarily mean that the job has completed or was unsuccessful.

[Output-only] Final error result of the job. If present, indicates that the job has completed and was unsuccessful.

Trait Implementations

impl Debug for JobStatus
[src]

Formats the value using the given formatter.

impl Clone for JobStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for JobStatus
[src]

Returns the "default value" for a type. Read more

impl Part for JobStatus
[src]