pub struct JobListing {
pub total_result_size: Option<i32>,
pub next_page_token: Option<String>,
pub previous_page_token: Option<String>,
pub jobs: Option<Vec<ServiceJob>>,
}Expand description
JobListing : The payload for the getServiceJobs operation.
Fields§
§total_result_size: Option<i32>Total result size of the query result.
next_page_token: Option<String>A generated string used to pass information to your next request. If nextPageToken is returned, pass the value of nextPageToken to the pageToken to get next results.
previous_page_token: Option<String>A generated string used to pass information to your next request. If previousPageToken is returned, pass the value of previousPageToken to the pageToken to get previous page results.
jobs: Option<Vec<ServiceJob>>List of job details for the given input.
Implementations§
Source§impl JobListing
impl JobListing
Sourcepub fn new() -> JobListing
pub fn new() -> JobListing
The payload for the getServiceJobs operation.
Trait Implementations§
Source§impl Clone for JobListing
impl Clone for JobListing
Source§fn clone(&self) -> JobListing
fn clone(&self) -> JobListing
Returns a duplicate 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 JobListing
impl Debug for JobListing
Source§impl Default for JobListing
impl Default for JobListing
Source§fn default() -> JobListing
fn default() -> JobListing
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobListing
impl<'de> Deserialize<'de> for JobListing
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
Source§impl PartialEq for JobListing
impl PartialEq for JobListing
Source§impl Serialize for JobListing
impl Serialize for JobListing
impl StructuralPartialEq for JobListing
Auto Trait Implementations§
impl Freeze for JobListing
impl RefUnwindSafe for JobListing
impl Send for JobListing
impl Sync for JobListing
impl Unpin for JobListing
impl UnsafeUnpin for JobListing
impl UnwindSafe for JobListing
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