pub struct ListJobExecutionsForJobResponse {
pub execution_summaries: Option<Vec<JobExecutionSummaryForJob>>,
pub next_token: Option<String>,
}Fields§
§execution_summaries: Option<Vec<JobExecutionSummaryForJob>>A list of job execution summaries.
next_token: Option<String>The token for the next set of results, or null if there are no additional results.
Trait Implementations§
Source§impl Clone for ListJobExecutionsForJobResponse
impl Clone for ListJobExecutionsForJobResponse
Source§fn clone(&self) -> ListJobExecutionsForJobResponse
fn clone(&self) -> ListJobExecutionsForJobResponse
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 Default for ListJobExecutionsForJobResponse
impl Default for ListJobExecutionsForJobResponse
Source§fn default() -> ListJobExecutionsForJobResponse
fn default() -> ListJobExecutionsForJobResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListJobExecutionsForJobResponse
impl<'de> Deserialize<'de> for ListJobExecutionsForJobResponse
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 ListJobExecutionsForJobResponse
impl PartialEq for ListJobExecutionsForJobResponse
Source§fn eq(&self, other: &ListJobExecutionsForJobResponse) -> bool
fn eq(&self, other: &ListJobExecutionsForJobResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListJobExecutionsForJobResponse
Auto Trait Implementations§
impl Freeze for ListJobExecutionsForJobResponse
impl RefUnwindSafe for ListJobExecutionsForJobResponse
impl Send for ListJobExecutionsForJobResponse
impl Sync for ListJobExecutionsForJobResponse
impl Unpin for ListJobExecutionsForJobResponse
impl UnwindSafe for ListJobExecutionsForJobResponse
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