Struct podman_api::models::NetworkCreate [−][src]
pub struct NetworkCreate {
pub attachable: Option<bool>,
pub check_duplicate: Option<bool>,
pub config_from: Option<ConfigReference>,
pub config_only: Option<bool>,
pub driver: Option<String>,
pub enable_i_pv6: Option<bool>,
pub IPAM: Option<Ipam>,
pub ingress: Option<bool>,
pub internal: Option<bool>,
pub labels: Option<HashMap<String, String, RandomState>>,
pub options: Option<HashMap<String, String, RandomState>>,
pub scope: Option<String>,
}
Expand description
NetworkCreate is the expected body of the "create network" http request message
Fields
attachable: Option<bool>
check_duplicate: Option<bool>
Check for networks with duplicate names. Network is primarily keyed based on a random ID and not on the name. Network name is strictly a user-friendly alias to the network which is uniquely identified using ID. And there is no guaranteed way to check for duplicates. Option 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.
config_from: Option<ConfigReference>
config_only: Option<bool>
driver: Option<String>
enable_i_pv6: Option<bool>
IPAM: Option<Ipam>
ingress: Option<bool>
internal: Option<bool>
labels: Option<HashMap<String, String, RandomState>>
options: Option<HashMap<String, String, RandomState>>
scope: Option<String>
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<NetworkCreate, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<NetworkCreate, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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
Auto Trait Implementations
impl RefUnwindSafe for NetworkCreate
impl Send for NetworkCreate
impl Sync for NetworkCreate
impl Unpin for NetworkCreate
impl UnwindSafe for NetworkCreate
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more