Struct bollard::network::CreateNetworkOptions
source · 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: 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§
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 moresource§impl<T> Debug for CreateNetworkOptions<T>
impl<T> Debug for CreateNetworkOptions<T>
source§impl<T> Default for CreateNetworkOptions<T>
impl<T> Default for CreateNetworkOptions<T>
source§fn default() -> CreateNetworkOptions<T>
fn default() -> CreateNetworkOptions<T>
source§impl<'de, T> Deserialize<'de> for CreateNetworkOptions<T>
impl<'de, T> Deserialize<'de> for CreateNetworkOptions<T>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl<T> PartialEq for CreateNetworkOptions<T>
impl<T> PartialEq for CreateNetworkOptions<T>
source§impl<T> Serialize for CreateNetworkOptions<T>
impl<T> Serialize for CreateNetworkOptions<T>
impl<T> StructuralPartialEq for CreateNetworkOptions<T>
Auto Trait Implementations§
impl<T> Freeze for CreateNetworkOptions<T>where
T: Freeze,
impl<T> RefUnwindSafe for CreateNetworkOptions<T>where
T: RefUnwindSafe,
impl<T> Send for CreateNetworkOptions<T>where
T: Send,
impl<T> Sync for CreateNetworkOptions<T>where
T: Sync,
impl<T> Unpin for CreateNetworkOptions<T>where
T: Unpin,
impl<T> UnwindSafe for CreateNetworkOptions<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)