Struct docker_api::models::NetworkCreateNetworkConfigParam
source · [−]pub struct NetworkCreateNetworkConfigParam {
pub attachable: Option<bool>,
pub check_duplicate: Option<bool>,
pub driver: Option<String>,
pub enable_i_pv_6: Option<bool>,
pub ipam: Option<Ipam>,
pub ingress: Option<bool>,
pub internal: Option<bool>,
pub labels: Option<HashMap<String, String, RandomState>>,
pub name: String,
pub options: Option<HashMap<String, String, RandomState>>,
}
Fields
attachable: Option<bool>
Globally scoped network is manually attachable by regular containers from workers in swarm mode.
check_duplicate: Option<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: Option<String>
Name of the network driver plugin to use.
enable_i_pv_6: Option<bool>
Enable IPv6 on the network.
ipam: Option<Ipam>
ingress: Option<bool>
Ingress network is the network which provides the routing-mesh in swarm mode.
internal: Option<bool>
Restrict external access to the network.
labels: Option<HashMap<String, String, RandomState>>
User-defined key/value metadata.
name: String
The network’s name.
options: Option<HashMap<String, String, RandomState>>
Network specific options to be used by the drivers.
Trait Implementations
sourceimpl Clone for NetworkCreateNetworkConfigParam
impl Clone for NetworkCreateNetworkConfigParam
sourcefn clone(&self) -> NetworkCreateNetworkConfigParam
fn clone(&self) -> NetworkCreateNetworkConfigParam
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<'de> Deserialize<'de> for NetworkCreateNetworkConfigParam
impl<'de> Deserialize<'de> for NetworkCreateNetworkConfigParam
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<NetworkCreateNetworkConfigParam, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<NetworkCreateNetworkConfigParam, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<NetworkCreateNetworkConfigParam> for NetworkCreateNetworkConfigParam
impl PartialEq<NetworkCreateNetworkConfigParam> for NetworkCreateNetworkConfigParam
sourcefn eq(&self, other: &NetworkCreateNetworkConfigParam) -> bool
fn eq(&self, other: &NetworkCreateNetworkConfigParam) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for NetworkCreateNetworkConfigParam
impl Serialize for NetworkCreateNetworkConfigParam
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for NetworkCreateNetworkConfigParam
Auto Trait Implementations
impl RefUnwindSafe for NetworkCreateNetworkConfigParam
impl Send for NetworkCreateNetworkConfigParam
impl Sync for NetworkCreateNetworkConfigParam
impl Unpin for NetworkCreateNetworkConfigParam
impl UnwindSafe for NetworkCreateNetworkConfigParam
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