[][src]Struct rusoto_globalaccelerator::IpSet

pub struct IpSet {
    pub ip_addresses: Option<Vec<String>>,
    pub ip_family: Option<String>,
}

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

impl Clone for IpSet[src]

impl Debug for IpSet[src]

impl Default for IpSet[src]

impl<'de> Deserialize<'de> for IpSet[src]

impl PartialEq<IpSet> for IpSet[src]

impl StructuralPartialEq for IpSet[src]

Auto Trait Implementations

impl RefUnwindSafe for IpSet

impl Send for IpSet

impl Sync for IpSet

impl Unpin for IpSet

impl UnwindSafe for IpSet

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.