Struct bollard::network::CreateNetworkOptions
source · [−]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>,
}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
sourceimpl<T: Clone> Clone for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
impl<T: Clone> Clone for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
sourcefn clone(&self) -> CreateNetworkOptions<T>
fn clone(&self) -> CreateNetworkOptions<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<T: Default> Default for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
impl<T: Default> Default for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
sourcefn default() -> CreateNetworkOptions<T>
fn default() -> CreateNetworkOptions<T>
Returns the “default value” for a type. Read more
sourceimpl<'de, T> Deserialize<'de> for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
T: Deserialize<'de>,
sourcefn 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>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<T: PartialEq> PartialEq<CreateNetworkOptions<T>> for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
impl<T: PartialEq> PartialEq<CreateNetworkOptions<T>> for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
sourcefn eq(&self, other: &CreateNetworkOptions<T>) -> bool
fn eq(&self, other: &CreateNetworkOptions<T>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CreateNetworkOptions<T>) -> bool
fn ne(&self, other: &CreateNetworkOptions<T>) -> bool
This method tests for !=.
sourceimpl<T> Serialize for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
T: Serialize,
impl<T> Serialize for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
T: Serialize,
impl<T> StructuralPartialEq for CreateNetworkOptions<T> where
T: Into<String> + Eq + Hash,
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more