pub struct CidrBlockAssociation {
pub association_id: Option<String>,
pub cidr_block: Option<String>,
pub cidr_block_state: Option<String>,
}Expand description
An IPv4 CIDR block association.
Fields§
§association_id: Option<String>The association ID for the IPv4 CIDR block.
cidr_block: Option<String>The IPv4 CIDR block.
cidr_block_state: Option<String>Information about the state of the IPv4 CIDR block.
Trait Implementations§
Source§impl Clone for CidrBlockAssociation
impl Clone for CidrBlockAssociation
Source§fn clone(&self) -> CidrBlockAssociation
fn clone(&self) -> CidrBlockAssociation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CidrBlockAssociation
impl Debug for CidrBlockAssociation
Source§impl Default for CidrBlockAssociation
impl Default for CidrBlockAssociation
Source§fn default() -> CidrBlockAssociation
fn default() -> CidrBlockAssociation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CidrBlockAssociation
impl<'de> Deserialize<'de> for CidrBlockAssociation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CidrBlockAssociation
impl PartialEq for CidrBlockAssociation
Source§fn eq(&self, other: &CidrBlockAssociation) -> bool
fn eq(&self, other: &CidrBlockAssociation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CidrBlockAssociation
impl Serialize for CidrBlockAssociation
impl StructuralPartialEq for CidrBlockAssociation
Auto Trait Implementations§
impl Freeze for CidrBlockAssociation
impl RefUnwindSafe for CidrBlockAssociation
impl Send for CidrBlockAssociation
impl Sync for CidrBlockAssociation
impl Unpin for CidrBlockAssociation
impl UnsafeUnpin for CidrBlockAssociation
impl UnwindSafe for CidrBlockAssociation
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