pub struct NetworkInspect {Show 15 fields
pub containers: HashMap<String, NetworkInspectContainer>,
pub created: DateTime<Utc>,
pub dns_enabled: bool,
pub driver: String,
pub id: String,
pub internal: bool,
pub ipam_options: HashMap<String, String>,
pub ipv6_enabled: bool,
pub labels: HashMap<String, String>,
pub name: String,
pub network_dns_servers: Vec<String>,
pub network_interface: String,
pub options: HashMap<String, String>,
pub routes: Vec<NetworkInspectRoute>,
pub subnets: Vec<NetworkInspectSubnet>,
}
Fields§
§containers: HashMap<String, NetworkInspectContainer>
§created: DateTime<Utc>
§dns_enabled: bool
§driver: String
§id: String
§internal: bool
§ipam_options: HashMap<String, String>
§ipv6_enabled: bool
§labels: HashMap<String, String>
§name: String
§network_dns_servers: Vec<String>
§network_interface: String
§options: HashMap<String, String>
§routes: Vec<NetworkInspectRoute>
§subnets: Vec<NetworkInspectSubnet>
Trait Implementations§
Source§impl Debug for NetworkInspect
impl Debug for NetworkInspect
Source§impl<'de> Deserialize<'de> for NetworkInspect
impl<'de> Deserialize<'de> for NetworkInspect
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 NetworkInspect
impl RefUnwindSafe for NetworkInspect
impl Send for NetworkInspect
impl Sync for NetworkInspect
impl Unpin for NetworkInspect
impl UnwindSafe for NetworkInspect
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