Struct aws_sdk_robomaker::types::FailureSummary
source · #[non_exhaustive]pub struct FailureSummary {
pub total_failure_count: i32,
pub failures: Option<Vec<WorldFailure>>,
}Expand description
Information about worlds that failed.
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.total_failure_count: i32The total number of failures.
failures: Option<Vec<WorldFailure>>The worlds that failed.
Implementations§
source§impl FailureSummary
impl FailureSummary
sourcepub fn total_failure_count(&self) -> i32
pub fn total_failure_count(&self) -> i32
The total number of failures.
sourcepub fn failures(&self) -> &[WorldFailure]
pub fn failures(&self) -> &[WorldFailure]
The worlds that failed.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .failures.is_none().
source§impl FailureSummary
impl FailureSummary
sourcepub fn builder() -> FailureSummaryBuilder
pub fn builder() -> FailureSummaryBuilder
Creates a new builder-style object to manufacture FailureSummary.
Trait Implementations§
source§impl Clone for FailureSummary
impl Clone for FailureSummary
source§fn clone(&self) -> FailureSummary
fn clone(&self) -> FailureSummary
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 FailureSummary
impl Debug for FailureSummary
source§impl PartialEq for FailureSummary
impl PartialEq for FailureSummary
source§fn eq(&self, other: &FailureSummary) -> bool
fn eq(&self, other: &FailureSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FailureSummary
Auto Trait Implementations§
impl RefUnwindSafe for FailureSummary
impl Send for FailureSummary
impl Sync for FailureSummary
impl Unpin for FailureSummary
impl UnwindSafe for FailureSummary
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.