[][src]Struct google_container1::UsableSubnetworkSecondaryRange

pub struct UsableSubnetworkSecondaryRange {
    pub status: Option<String>,
    pub ip_cidr_range: Option<String>,
    pub range_name: Option<String>,
}

Secondary IP range of a usable subnetwork.

This type is not used in any activity, and only used as part of another schema.

Fields

status: Option<String>

This field is to determine the status of the secondary range programmably.

ip_cidr_range: Option<String>

The range of IP addresses belonging to this subnetwork secondary range.

range_name: Option<String>

The name associated with this subnetwork secondary range, used when adding an alias IP range to a VM instance.

Trait Implementations

impl Clone for UsableSubnetworkSecondaryRange[src]

impl Debug for UsableSubnetworkSecondaryRange[src]

impl Default for UsableSubnetworkSecondaryRange[src]

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

impl Part for UsableSubnetworkSecondaryRange[src]

impl Serialize for UsableSubnetworkSecondaryRange[src]

Auto Trait Implementations

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: for<'de> Deserialize<'de>, 
[src]

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

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

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.

impl<T> Typeable for T where
    T: Any