pub struct InspectNetworkResponseContainer {
pub name: Option<String>,
pub endpoint_id: String,
pub mac_address: String,
pub ipv4_address: Option<String>,
pub ipv6_address: Option<String>,
}Expand description
See https://docs.docker.com/engine/api/v1.41/#tag/Network/operation/NetworkInspect
Fields§
§name: Option<String>§endpoint_id: String§mac_address: String§ipv4_address: Option<String>§ipv6_address: Option<String>Trait Implementations§
source§impl Clone for InspectNetworkResponseContainer
impl Clone for InspectNetworkResponseContainer
source§fn clone(&self) -> InspectNetworkResponseContainer
fn clone(&self) -> InspectNetworkResponseContainer
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<'de> Deserialize<'de> for InspectNetworkResponseContainer
impl<'de> Deserialize<'de> for InspectNetworkResponseContainer
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<InspectNetworkResponseContainer> for InspectNetworkResponseContainer
impl PartialEq<InspectNetworkResponseContainer> for InspectNetworkResponseContainer
source§fn eq(&self, other: &InspectNetworkResponseContainer) -> bool
fn eq(&self, other: &InspectNetworkResponseContainer) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for InspectNetworkResponseContainer
impl StructuralEq for InspectNetworkResponseContainer
impl StructuralPartialEq for InspectNetworkResponseContainer
Auto Trait Implementations§
impl RefUnwindSafe for InspectNetworkResponseContainer
impl Send for InspectNetworkResponseContainer
impl Sync for InspectNetworkResponseContainer
impl Unpin for InspectNetworkResponseContainer
impl UnwindSafe for InspectNetworkResponseContainer
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.