[][src]Struct isilon::models::GroupnetSubnetCreateParams

pub struct GroupnetSubnetCreateParams {
    pub description: Option<String>,
    pub dsr_addrs: Option<Vec<String>>,
    pub gateway: Option<String>,
    pub gateway_priority: Option<i32>,
    pub mtu: Option<i32>,
    pub name: String,
    pub prefixlen: i32,
    pub sc_service_addr: Option<String>,
    pub sc_service_name: Option<String>,
    pub vlan_enabled: Option<bool>,
    pub vlan_id: Option<i32>,
    pub addr_family: String,
}

Fields

description: Option<String>

A description of the subnet.

dsr_addrs: Option<Vec<String>>

List of Direct Server Return addresses.

gateway: Option<String>

Gateway IP address.

gateway_priority: Option<i32>

Gateway priority.

mtu: Option<i32>

MTU of the subnet.

name: String

The name of the subnet.

prefixlen: i32

Subnet Prefix Length.

sc_service_addr: Option<String>

The address that SmartConnect listens for DNS requests.

sc_service_name: Option<String>

Domain Name corresponding to the SmartConnect Service Address.

vlan_enabled: Option<bool>

VLAN tagging enabled or disabled.

vlan_id: Option<i32>

VLAN ID for all interfaces in the subnet.

addr_family: String

IP address format.

Trait Implementations

impl Debug for GroupnetSubnetCreateParams[src]

impl Serialize for GroupnetSubnetCreateParams[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T