Struct google_bigquery2::JobListJobs
source · 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>,
}Expand description
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§
source§impl Clone for JobListJobs
impl Clone for JobListJobs
source§fn clone(&self) -> JobListJobs
fn clone(&self) -> JobListJobs
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for JobListJobs
impl Debug for JobListJobs
source§impl Default for JobListJobs
impl Default for JobListJobs
source§fn default() -> JobListJobs
fn default() -> JobListJobs
Returns the “default value” for a type. Read more
source§impl Deserialize for JobListJobs
impl Deserialize for JobListJobs
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for JobListJobs
impl Serialize for JobListJobs
impl NestedType for JobListJobs
impl Part for JobListJobs
Auto Trait Implementations§
impl Freeze for JobListJobs
impl RefUnwindSafe for JobListJobs
impl Send for JobListJobs
impl Sync for JobListJobs
impl Unpin for JobListJobs
impl UnwindSafe for JobListJobs
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more