pub struct GetTransitGatewayMulticastDomainAssociationsResult {
pub multicast_domain_associations: Option<Vec<TransitGatewayMulticastDomainAssociation>>,
pub next_token: Option<String>,
}Fields§
§multicast_domain_associations: Option<Vec<TransitGatewayMulticastDomainAssociation>>Information about the multicast domain associations.
next_token: Option<String>The token to use to retrieve the next page of results. This value is null when there are no more results to return.
Trait Implementations§
Source§impl Clone for GetTransitGatewayMulticastDomainAssociationsResult
impl Clone for GetTransitGatewayMulticastDomainAssociationsResult
Source§fn clone(&self) -> GetTransitGatewayMulticastDomainAssociationsResult
fn clone(&self) -> GetTransitGatewayMulticastDomainAssociationsResult
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 GetTransitGatewayMulticastDomainAssociationsResult
impl Default for GetTransitGatewayMulticastDomainAssociationsResult
Source§fn default() -> GetTransitGatewayMulticastDomainAssociationsResult
fn default() -> GetTransitGatewayMulticastDomainAssociationsResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetTransitGatewayMulticastDomainAssociationsResult
impl PartialEq for GetTransitGatewayMulticastDomainAssociationsResult
Source§fn eq(&self, other: &GetTransitGatewayMulticastDomainAssociationsResult) -> bool
fn eq(&self, other: &GetTransitGatewayMulticastDomainAssociationsResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetTransitGatewayMulticastDomainAssociationsResult
Auto Trait Implementations§
impl Freeze for GetTransitGatewayMulticastDomainAssociationsResult
impl RefUnwindSafe for GetTransitGatewayMulticastDomainAssociationsResult
impl Send for GetTransitGatewayMulticastDomainAssociationsResult
impl Sync for GetTransitGatewayMulticastDomainAssociationsResult
impl Unpin for GetTransitGatewayMulticastDomainAssociationsResult
impl UnwindSafe for GetTransitGatewayMulticastDomainAssociationsResult
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