Struct google_bigquery2::JobList
source · pub struct JobList {
pub next_page_token: Option<String>,
pub kind: Option<String>,
pub etag: Option<String>,
pub jobs: Option<Vec<JobListJobs>>,
}Expand description
Fields§
§next_page_token: Option<String>A token to request the next page of results.
kind: Option<String>The resource type of the response.
etag: Option<String>A hash of this page of results.
jobs: Option<Vec<JobListJobs>>List of jobs that were requested.
Trait Implementations§
source§impl Deserialize for JobList
impl Deserialize for JobList
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
impl ResponseResult for JobList
Auto Trait Implementations§
impl Freeze for JobList
impl RefUnwindSafe for JobList
impl Send for JobList
impl Sync for JobList
impl Unpin for JobList
impl UnwindSafe for JobList
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