Struct google_bigquery2::JobListJobs
[−]
[src]
pub struct JobListJobs {
pub status: Option<JobStatus>,
pub kind: Option<String>,
pub statistics: Option<JobStatistics>,
pub job_reference: Option<JobReference>,
pub state: Option<String>,
pub error_result: Option<ErrorProto>,
pub configuration: Option<JobConfiguration>,
pub id: Option<String>,
pub user_email: Option<String>,
}List of jobs that were requested.
This type is not used in any activity, and only used as part of another schema.
Fields
status: Option<JobStatus>
[Full-projection-only] Describes the state of the job.
kind: Option<String>
The resource type.
statistics: Option<JobStatistics>
[Output-only] Information about the job, including starting time and ending time of the job.
job_reference: Option<JobReference>
Job reference uniquely identifying the job.
state: Option<String>
Running state of the job. When the state is DONE, errorResult can be checked to determine whether the job succeeded or failed.
error_result: Option<ErrorProto>
A result object that will be present only if the job has failed.
configuration: Option<JobConfiguration>
[Full-projection-only] Specifies the job configuration.
id: Option<String>
Unique opaque ID of the job.
user_email: Option<String>
[Full-projection-only] Email address of the user who ran the job.
Trait Implementations
impl Default for JobListJobs[src]
fn default() -> JobListJobs
Returns the "default value" for a type. Read more
impl Clone for JobListJobs[src]
fn clone(&self) -> JobListJobs
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