Struct amazon_sp_services::models::job_listing::JobListing
source · [−]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
sourceimpl JobListing
impl JobListing
sourcepub fn new() -> JobListing
pub fn new() -> JobListing
The payload for the getServiceJobs operation.
Trait Implementations
sourceimpl Clone for JobListing
impl Clone for JobListing
sourcefn clone(&self) -> JobListing
fn clone(&self) -> JobListing
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for JobListing
impl Debug for JobListing
sourceimpl Default for JobListing
impl Default for JobListing
sourcefn default() -> JobListing
fn default() -> JobListing
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for JobListing
impl<'de> Deserialize<'de> for JobListing
sourcefn 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
sourceimpl PartialEq<JobListing> for JobListing
impl PartialEq<JobListing> for JobListing
sourcefn eq(&self, other: &JobListing) -> bool
fn eq(&self, other: &JobListing) -> bool
sourceimpl Serialize for JobListing
impl Serialize for JobListing
impl StructuralPartialEq for JobListing
Auto Trait Implementations
impl RefUnwindSafe for JobListing
impl Send for JobListing
impl Sync for JobListing
impl Unpin for JobListing
impl UnwindSafe for JobListing
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more