Struct bollard::network::CreateNetworkOptions[][src]

pub struct CreateNetworkOptions<T> where
    T: Into<String> + Eq + Hash
{ pub name: T, pub check_duplicate: bool, pub driver: T, pub internal: bool, pub attachable: bool, pub ingress: bool, pub ipam: Ipam, pub enable_ipv6: bool, pub options: HashMap<T, T>, pub labels: HashMap<T, T>, }

Network configuration used in the Create Network API

Fields

name: T

The network's name.

check_duplicate: bool

Check for networks with duplicate names. Since Network is primarily keyed based on a random ID and not on the name, and network name is strictly a user-friendly alias to the network which is uniquely identified using ID, there is no guaranteed way to check for duplicates. CheckDuplicate is there to provide a best effort checking of any networks which has the same name but it is not guaranteed to catch all name collisions.

driver: T

Name of the network driver plugin to use.

internal: bool

Restrict external access to the network.

attachable: bool

Globally scoped network is manually attachable by regular containers from workers in swarm mode.

ingress: bool

Ingress network is the network which provides the routing-mesh in swarm mode.

ipam: Ipam

Controls IP address management when creating a network.

enable_ipv6: bool

Enable IPv6 on the network.

options: HashMap<T, T>

Network specific options to be used by the drivers.

labels: HashMap<T, T>

User-defined key/value metadata.

Trait Implementations

impl<T: Clone> Clone for CreateNetworkOptions<T> where
    T: Into<String> + Eq + Hash
[src]

impl<T: Debug> Debug for CreateNetworkOptions<T> where
    T: Into<String> + Eq + Hash
[src]

impl<T: Default> Default for CreateNetworkOptions<T> where
    T: Into<String> + Eq + Hash
[src]

impl<'de, T> Deserialize<'de> for CreateNetworkOptions<T> where
    T: Into<String> + Eq + Hash,
    T: Deserialize<'de>, 
[src]

impl<T> Serialize for CreateNetworkOptions<T> where
    T: Into<String> + Eq + Hash,
    T: Serialize
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for CreateNetworkOptions<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for CreateNetworkOptions<T> where
    T: Send
[src]

impl<T> Sync for CreateNetworkOptions<T> where
    T: Sync
[src]

impl<T> Unpin for CreateNetworkOptions<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for CreateNetworkOptions<T> where
    T: UnwindSafe
[src]

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> Instrument 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.