#[non_exhaustive]pub struct BatchStopJobRunOutput {
pub successful_submissions: Option<Vec<BatchStopJobRunSuccessfulSubmission>>,
pub errors: Option<Vec<BatchStopJobRunError>>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.successful_submissions: Option<Vec<BatchStopJobRunSuccessfulSubmission>>A list of the JobRuns that were successfully submitted for stopping.
errors: Option<Vec<BatchStopJobRunError>>A list of the errors that were encountered in trying to stop JobRuns, including the JobRunId for which each error was encountered and details about the error.
Implementations§
source§impl BatchStopJobRunOutput
impl BatchStopJobRunOutput
sourcepub fn successful_submissions(
&self
) -> Option<&[BatchStopJobRunSuccessfulSubmission]>
pub fn successful_submissions( &self ) -> Option<&[BatchStopJobRunSuccessfulSubmission]>
A list of the JobRuns that were successfully submitted for stopping.
sourcepub fn errors(&self) -> Option<&[BatchStopJobRunError]>
pub fn errors(&self) -> Option<&[BatchStopJobRunError]>
A list of the errors that were encountered in trying to stop JobRuns, including the JobRunId for which each error was encountered and details about the error.
source§impl BatchStopJobRunOutput
impl BatchStopJobRunOutput
sourcepub fn builder() -> BatchStopJobRunOutputBuilder
pub fn builder() -> BatchStopJobRunOutputBuilder
Creates a new builder-style object to manufacture BatchStopJobRunOutput.
Trait Implementations§
source§impl Clone for BatchStopJobRunOutput
impl Clone for BatchStopJobRunOutput
source§fn clone(&self) -> BatchStopJobRunOutput
fn clone(&self) -> BatchStopJobRunOutput
Returns a copy 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 BatchStopJobRunOutput
impl Debug for BatchStopJobRunOutput
source§impl PartialEq<BatchStopJobRunOutput> for BatchStopJobRunOutput
impl PartialEq<BatchStopJobRunOutput> for BatchStopJobRunOutput
source§fn eq(&self, other: &BatchStopJobRunOutput) -> bool
fn eq(&self, other: &BatchStopJobRunOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for BatchStopJobRunOutput
impl RequestId for BatchStopJobRunOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for BatchStopJobRunOutput
Auto Trait Implementations§
impl RefUnwindSafe for BatchStopJobRunOutput
impl Send for BatchStopJobRunOutput
impl Sync for BatchStopJobRunOutput
impl Unpin for BatchStopJobRunOutput
impl UnwindSafe for BatchStopJobRunOutput
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