#[non_exhaustive]pub struct DescribeExclusionsOutput {
pub exclusions: Option<HashMap<String, Exclusion>>,
pub failed_items: Option<HashMap<String, FailedItemDetails>>,
/* 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.exclusions: Option<HashMap<String, Exclusion>>Information about the exclusions.
failed_items: Option<HashMap<String, FailedItemDetails>>Exclusion details that cannot be described. An error code is provided for each failed item.
Implementations§
source§impl DescribeExclusionsOutput
impl DescribeExclusionsOutput
sourcepub fn exclusions(&self) -> Option<&HashMap<String, Exclusion>>
pub fn exclusions(&self) -> Option<&HashMap<String, Exclusion>>
Information about the exclusions.
sourcepub fn failed_items(&self) -> Option<&HashMap<String, FailedItemDetails>>
pub fn failed_items(&self) -> Option<&HashMap<String, FailedItemDetails>>
Exclusion details that cannot be described. An error code is provided for each failed item.
source§impl DescribeExclusionsOutput
impl DescribeExclusionsOutput
sourcepub fn builder() -> DescribeExclusionsOutputBuilder
pub fn builder() -> DescribeExclusionsOutputBuilder
Creates a new builder-style object to manufacture DescribeExclusionsOutput.
Trait Implementations§
source§impl Clone for DescribeExclusionsOutput
impl Clone for DescribeExclusionsOutput
source§fn clone(&self) -> DescribeExclusionsOutput
fn clone(&self) -> DescribeExclusionsOutput
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 DescribeExclusionsOutput
impl Debug for DescribeExclusionsOutput
source§impl PartialEq<DescribeExclusionsOutput> for DescribeExclusionsOutput
impl PartialEq<DescribeExclusionsOutput> for DescribeExclusionsOutput
source§fn eq(&self, other: &DescribeExclusionsOutput) -> bool
fn eq(&self, other: &DescribeExclusionsOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeExclusionsOutput
impl RequestId for DescribeExclusionsOutput
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 DescribeExclusionsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeExclusionsOutput
impl Send for DescribeExclusionsOutput
impl Sync for DescribeExclusionsOutput
impl Unpin for DescribeExclusionsOutput
impl UnwindSafe for DescribeExclusionsOutput
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