Struct google_bigquery2::JobStatistics[][src]

pub struct JobStatistics {
    pub load: Option<JobStatistics3>,
    pub completion_ratio: Option<f64>,
    pub creation_time: Option<String>,
    pub total_bytes_processed: Option<String>,
    pub quota_deferments: Option<Vec<String>>,
    pub start_time: Option<String>,
    pub query: Option<JobStatistics2>,
    pub end_time: Option<String>,
    pub extract: Option<JobStatistics4>,
}

There is no detailed description.

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

Fields

[Output-only] Statistics for a load job.

[TrustedTester] [Output-only] Job progress (0.0 -> 1.0) for LOAD and EXTRACT jobs.

[Output-only] Creation time of this job, in milliseconds since the epoch. This field will be present on all jobs.

[Output-only] [Deprecated] Use the bytes processed in the query statistics instead.

[Output-only] Quotas which delayed this job's start time.

[Output-only] Start time of this job, in milliseconds since the epoch. This field will be present when the job transitions from the PENDING state to either RUNNING or DONE.

[Output-only] Statistics for a query job.

[Output-only] End time of this job, in milliseconds since the epoch. This field will be present whenever a job is in the DONE state.

[Output-only] Statistics for an extract job.

Trait Implementations

impl Default for JobStatistics
[src]

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

impl Clone for JobStatistics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobStatistics
[src]

Formats the value using the given formatter. Read more

impl Part for JobStatistics
[src]

Auto Trait Implementations