Struct bollard_stubs::models::EndpointSettings[][src]

pub struct EndpointSettings {
    pub ipam_config: Option<EndpointIpamConfig>,
    pub links: Option<Vec<String>>,
    pub aliases: Option<Vec<String>>,
    pub network_id: Option<String>,
    pub endpoint_id: Option<String>,
    pub gateway: Option<String>,
    pub ip_address: Option<String>,
    pub ip_prefix_len: Option<i64>,
    pub ipv6_gateway: Option<String>,
    pub global_ipv6_address: Option<String>,
    pub global_ipv6_prefix_len: Option<i64>,
    pub mac_address: Option<String>,
    pub driver_opts: Option<HashMap<String, String>>,
}

Configuration for a network endpoint.

Fields

ipam_config: Option<EndpointIpamConfig>links: Option<Vec<String>>aliases: Option<Vec<String>>network_id: Option<String>

Unique ID of the network.

endpoint_id: Option<String>

Unique ID for the service endpoint in a Sandbox.

gateway: Option<String>

Gateway address for this network.

ip_address: Option<String>

IPv4 address.

ip_prefix_len: Option<i64>

Mask length of the IPv4 address.

ipv6_gateway: Option<String>

IPv6 gateway address.

global_ipv6_address: Option<String>

Global IPv6 address.

global_ipv6_prefix_len: Option<i64>

Mask length of the global IPv6 address.

mac_address: Option<String>

MAC address for the endpoint on this network.

driver_opts: Option<HashMap<String, String>>

DriverOpts is a mapping of driver options and values. These options are passed directly to the driver and are driver specific.

Trait Implementations

impl Clone for EndpointSettings[src]

impl Debug for EndpointSettings[src]

impl Default for EndpointSettings[src]

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

impl PartialEq<EndpointSettings> for EndpointSettings[src]

impl Serialize for EndpointSettings[src]

impl StructuralPartialEq for EndpointSettings[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.