Struct google_bigquery2::JobStatistics
[−]
[src]
pub struct JobStatistics {
pub load: Option<JobStatistics3>,
pub extract: Option<JobStatistics4>,
pub start_time: Option<String>,
pub query: Option<JobStatistics2>,
pub end_time: Option<String>,
pub creation_time: Option<String>,
pub total_bytes_processed: Option<String>,
}There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields
load: Option<JobStatistics3>
[Output-only] Statistics for a load job.
extract: Option<JobStatistics4>
[Output-only] Statistics for an extract job.
start_time: Option<String>
[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.
query: Option<JobStatistics2>
[Output-only] Statistics for a query job.
end_time: Option<String>
[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.
creation_time: Option<String>
[Output-only] Creation time of this job, in milliseconds since the epoch. This field will be present on all jobs.
total_bytes_processed: Option<String>
[Output-only] [Deprecated] Use the bytes processed in the query statistics instead.
Trait Implementations
impl Debug for JobStatistics[src]
impl Clone for JobStatistics[src]
fn clone(&self) -> JobStatistics
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for JobStatistics[src]
fn default() -> JobStatistics
Returns the "default value" for a type. Read more