pub struct CreateNetworkOptions<T>{
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>,
}Expand description
Network configuration used in the Create Network API
Fields§
§name: TThe network’s name.
check_duplicate: boolCheck 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: TName of the network driver plugin to use.
internal: boolRestrict external access to the network.
attachable: boolGlobally scoped network is manually attachable by regular containers from workers in swarm mode.
ingress: boolIngress network is the network which provides the routing-mesh in swarm mode.
ipam: IpamControls IP address management when creating a network.
enable_ipv6: boolEnable 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§
Source§impl<T> Clone for CreateNetworkOptions<T>
impl<T> Clone for CreateNetworkOptions<T>
Source§fn clone(&self) -> CreateNetworkOptions<T>
fn clone(&self) -> CreateNetworkOptions<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more