#[non_exhaustive]pub struct AssociateAddressOutput {
pub association_id: Option<String>,
/* 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.association_id: Option<String>
The ID that represents the association of the Elastic IP address with an instance.
Implementations§
source§impl AssociateAddressOutput
impl AssociateAddressOutput
sourcepub fn association_id(&self) -> Option<&str>
pub fn association_id(&self) -> Option<&str>
The ID that represents the association of the Elastic IP address with an instance.
source§impl AssociateAddressOutput
impl AssociateAddressOutput
sourcepub fn builder() -> AssociateAddressOutputBuilder
pub fn builder() -> AssociateAddressOutputBuilder
Creates a new builder-style object to manufacture AssociateAddressOutput
.
Trait Implementations§
source§impl Clone for AssociateAddressOutput
impl Clone for AssociateAddressOutput
source§fn clone(&self) -> AssociateAddressOutput
fn clone(&self) -> AssociateAddressOutput
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 AssociateAddressOutput
impl Debug for AssociateAddressOutput
source§impl PartialEq<AssociateAddressOutput> for AssociateAddressOutput
impl PartialEq<AssociateAddressOutput> for AssociateAddressOutput
source§fn eq(&self, other: &AssociateAddressOutput) -> bool
fn eq(&self, other: &AssociateAddressOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for AssociateAddressOutput
impl RequestId for AssociateAddressOutput
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 AssociateAddressOutput
Auto Trait Implementations§
impl RefUnwindSafe for AssociateAddressOutput
impl Send for AssociateAddressOutput
impl Sync for AssociateAddressOutput
impl Unpin for AssociateAddressOutput
impl UnwindSafe for AssociateAddressOutput
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