pub struct AssociationStatus {
pub code: Option<String>,
pub message: Option<String>,
}Expand description
Describes the state of a target network association.
Fields§
§code: Option<String>The state of the target network association.
message: Option<String>A message about the status of the target network association, if applicable.
Trait Implementations§
Source§impl Clone for AssociationStatus
impl Clone for AssociationStatus
Source§fn clone(&self) -> AssociationStatus
fn clone(&self) -> AssociationStatus
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 Debug for AssociationStatus
impl Debug for AssociationStatus
Source§impl Default for AssociationStatus
impl Default for AssociationStatus
Source§fn default() -> AssociationStatus
fn default() -> AssociationStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for AssociationStatus
impl PartialEq for AssociationStatus
impl StructuralPartialEq for AssociationStatus
Auto Trait Implementations§
impl Freeze for AssociationStatus
impl RefUnwindSafe for AssociationStatus
impl Send for AssociationStatus
impl Sync for AssociationStatus
impl Unpin for AssociationStatus
impl UnwindSafe for AssociationStatus
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