[][src]Struct google_bigquery2::JobListJobs

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 Part for JobListJobs[src]

impl NestedType for JobListJobs[src]

impl Clone for JobListJobs[src]

impl Default for JobListJobs[src]

impl Debug for JobListJobs[src]

impl Serialize for JobListJobs[src]

impl<'de> Deserialize<'de> for JobListJobs[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]