pub struct IpSet {
pub ip_addresses: Option<Vec<String>>,
pub ip_family: Option<String>,
}
Expand description
A complex type for the set of IP addresses for an accelerator.
Fields§
§ip_addresses: Option<Vec<String>>
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
ip_family: Option<String>
The types of IP addresses included in this IP set.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IpSet
impl<'de> Deserialize<'de> for IpSet
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
impl StructuralPartialEq for IpSet
Auto Trait Implementations§
impl Freeze for IpSet
impl RefUnwindSafe for IpSet
impl Send for IpSet
impl Sync for IpSet
impl Unpin for IpSet
impl UnwindSafe for IpSet
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