pub struct JobList {
pub etag: Option<String>,
pub jobs: Option<Vec<JobListJobs>>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
pub unreachable: Option<Vec<String>>,
}Expand description
JobList is the response format for a jobs.list call.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list jobs (response)
Fields§
§etag: Option<String>A hash of this page of results.
jobs: Option<Vec<JobListJobs>>List of jobs that were requested.
kind: Option<String>The resource type of the response.
next_page_token: Option<String>A token to request the next page of results.
unreachable: Option<Vec<String>>A list of skipped locations that were unreachable. For more information about BigQuery locations, see: https://cloud.google.com/bigquery/docs/locations. Example: “europe-west5”
Trait Implementations§
Source§impl<'de> Deserialize<'de> for JobList
impl<'de> Deserialize<'de> for JobList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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