pub struct NetworkInfo {
pub id: String,
pub name: String,
pub driver: String,
pub scope: String,
pub ipv6: bool,
pub internal: bool,
pub attachable: bool,
pub ingress: bool,
pub created_at: String,
pub labels: HashMap<String, String>,
}
Expand description
Information about a Docker network
Fields§
§id: String
Network ID
name: String
Network name
driver: String
Network driver
scope: String
Network scope
ipv6: bool
IPv6 enabled
internal: bool
Internal network
attachable: bool
Attachable network
ingress: bool
Ingress network
created_at: String
Creation time
labels: HashMap<String, String>
Labels
Trait Implementations§
Source§impl Clone for NetworkInfo
impl Clone for NetworkInfo
Source§fn clone(&self) -> NetworkInfo
fn clone(&self) -> NetworkInfo
Returns a duplicate 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 Debug for NetworkInfo
impl Debug for NetworkInfo
Source§impl<'de> Deserialize<'de> for NetworkInfo
impl<'de> Deserialize<'de> for NetworkInfo
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
Auto Trait Implementations§
impl Freeze for NetworkInfo
impl RefUnwindSafe for NetworkInfo
impl Send for NetworkInfo
impl Sync for NetworkInfo
impl Unpin for NetworkInfo
impl UnwindSafe for NetworkInfo
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
Mutably borrows from an owned value. Read more