pub struct AwsEc2SecurityGroupIpv6Range {
pub cidr_ipv_6: Option<String>,
}Expand description
A range of IPv6 addresses.
Fields§
§cidr_ipv_6: Option<String>The IPv6 CIDR range. You can specify either a CIDR range or a source security group, but not both. To specify a single IPv6 address, use the /128 prefix length.
Trait Implementations§
Source§impl Clone for AwsEc2SecurityGroupIpv6Range
impl Clone for AwsEc2SecurityGroupIpv6Range
Source§fn clone(&self) -> AwsEc2SecurityGroupIpv6Range
fn clone(&self) -> AwsEc2SecurityGroupIpv6Range
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 AwsEc2SecurityGroupIpv6Range
impl Debug for AwsEc2SecurityGroupIpv6Range
Source§impl Default for AwsEc2SecurityGroupIpv6Range
impl Default for AwsEc2SecurityGroupIpv6Range
Source§fn default() -> AwsEc2SecurityGroupIpv6Range
fn default() -> AwsEc2SecurityGroupIpv6Range
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsEc2SecurityGroupIpv6Range
impl<'de> Deserialize<'de> for AwsEc2SecurityGroupIpv6Range
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 AwsEc2SecurityGroupIpv6Range
impl PartialEq for AwsEc2SecurityGroupIpv6Range
Source§fn eq(&self, other: &AwsEc2SecurityGroupIpv6Range) -> bool
fn eq(&self, other: &AwsEc2SecurityGroupIpv6Range) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsEc2SecurityGroupIpv6Range
Auto Trait Implementations§
impl Freeze for AwsEc2SecurityGroupIpv6Range
impl RefUnwindSafe for AwsEc2SecurityGroupIpv6Range
impl Send for AwsEc2SecurityGroupIpv6Range
impl Sync for AwsEc2SecurityGroupIpv6Range
impl Unpin for AwsEc2SecurityGroupIpv6Range
impl UnwindSafe for AwsEc2SecurityGroupIpv6Range
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