Struct aws_sdk_ec2::operation::reject_transit_gateway_multicast_domain_associations::RejectTransitGatewayMulticastDomainAssociationsOutput
source · #[non_exhaustive]pub struct RejectTransitGatewayMulticastDomainAssociationsOutput {
pub associations: Option<TransitGatewayMulticastDomainAssociations>,
/* 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.associations: Option<TransitGatewayMulticastDomainAssociations>
Information about the multicast domain associations.
Implementations§
source§impl RejectTransitGatewayMulticastDomainAssociationsOutput
impl RejectTransitGatewayMulticastDomainAssociationsOutput
sourcepub fn associations(&self) -> Option<&TransitGatewayMulticastDomainAssociations>
pub fn associations(&self) -> Option<&TransitGatewayMulticastDomainAssociations>
Information about the multicast domain associations.
source§impl RejectTransitGatewayMulticastDomainAssociationsOutput
impl RejectTransitGatewayMulticastDomainAssociationsOutput
sourcepub fn builder() -> RejectTransitGatewayMulticastDomainAssociationsOutputBuilder
pub fn builder() -> RejectTransitGatewayMulticastDomainAssociationsOutputBuilder
Creates a new builder-style object to manufacture RejectTransitGatewayMulticastDomainAssociationsOutput
.
Trait Implementations§
source§impl Clone for RejectTransitGatewayMulticastDomainAssociationsOutput
impl Clone for RejectTransitGatewayMulticastDomainAssociationsOutput
source§fn clone(&self) -> RejectTransitGatewayMulticastDomainAssociationsOutput
fn clone(&self) -> RejectTransitGatewayMulticastDomainAssociationsOutput
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 PartialEq<RejectTransitGatewayMulticastDomainAssociationsOutput> for RejectTransitGatewayMulticastDomainAssociationsOutput
impl PartialEq<RejectTransitGatewayMulticastDomainAssociationsOutput> for RejectTransitGatewayMulticastDomainAssociationsOutput
source§fn eq(
&self,
other: &RejectTransitGatewayMulticastDomainAssociationsOutput
) -> bool
fn eq( &self, other: &RejectTransitGatewayMulticastDomainAssociationsOutput ) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for RejectTransitGatewayMulticastDomainAssociationsOutput
impl RequestId for RejectTransitGatewayMulticastDomainAssociationsOutput
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 RejectTransitGatewayMulticastDomainAssociationsOutput
Auto Trait Implementations§
impl RefUnwindSafe for RejectTransitGatewayMulticastDomainAssociationsOutput
impl Send for RejectTransitGatewayMulticastDomainAssociationsOutput
impl Sync for RejectTransitGatewayMulticastDomainAssociationsOutput
impl Unpin for RejectTransitGatewayMulticastDomainAssociationsOutput
impl UnwindSafe for RejectTransitGatewayMulticastDomainAssociationsOutput
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