pub struct ContainerInspectNetworkSettings {Show 19 fields
pub additional_mac_addresses: Vec<String>,
pub bridge: String,
pub endpoint_id: String,
pub gateway: String,
pub global_ipv6_address: String,
pub global_ipb6_prefix_len: i64,
pub hairpin_mode: bool,
pub ip_address: String,
pub ip_prefix_len: i64,
pub ipv6_gateway: String,
pub link_local_ipv6_address: String,
pub link_local_ipv6_prefix_len: i64,
pub mac_address: String,
pub networks: HashMap<String, ContainerInspectNetworkSettingsNetwork>,
pub ports: HashMap<String, Vec<InspectHostPort>>,
pub sandbox_id: String,
pub sandbox_key: String,
pub secondary_ip_addresses: Vec<ContainerInspectNetworkSettingsSecondaryIPAddress>,
pub secondary_ipv6_addresses: Vec<ContainerInspectNetworkSettingsSecondaryIPAddress>,
}
Fields§
§additional_mac_addresses: Vec<String>
§bridge: String
§endpoint_id: String
§gateway: String
§global_ipv6_address: String
§global_ipb6_prefix_len: i64
§hairpin_mode: bool
§ip_address: String
§ip_prefix_len: i64
§ipv6_gateway: String
§link_local_ipv6_address: String
§link_local_ipv6_prefix_len: i64
§mac_address: String
§networks: HashMap<String, ContainerInspectNetworkSettingsNetwork>
§ports: HashMap<String, Vec<InspectHostPort>>
§sandbox_id: String
§sandbox_key: String
§secondary_ip_addresses: Vec<ContainerInspectNetworkSettingsSecondaryIPAddress>
§secondary_ipv6_addresses: Vec<ContainerInspectNetworkSettingsSecondaryIPAddress>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ContainerInspectNetworkSettings
impl<'de> Deserialize<'de> for ContainerInspectNetworkSettings
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 ContainerInspectNetworkSettings
impl RefUnwindSafe for ContainerInspectNetworkSettings
impl Send for ContainerInspectNetworkSettings
impl Sync for ContainerInspectNetworkSettings
impl Unpin for ContainerInspectNetworkSettings
impl UnwindSafe for ContainerInspectNetworkSettings
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