summaryrefslogtreecommitdiffstats
path: root/src/rep.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rep.rs')
-rw-r--r--src/rep.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rep.rs b/src/rep.rs
index 097ae9e..4f27688 100644
--- a/src/rep.rs
+++ b/src/rep.rs
@@ -106,6 +106,8 @@ pub struct State {
pub started_at: String,
}
+type PortDescription = HashMap<String, Option<Vec<HashMap<String, String>>>>;
+
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct NetworkSettings {
@@ -116,7 +118,7 @@ pub struct NetworkSettings {
#[serde(rename = "IPPrefixLen")]
pub ip_prefix_len: u64,
pub mac_address: String,
- pub ports: Option<HashMap<String, Option<Vec<HashMap<String, String>>>>>,
+ pub ports: Option<PortDescription>,
pub networks: HashMap<String, NetworkEntry>,
}