summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColvin Wellborn <39858617+colvin@users.noreply.github.com>2020-03-19 21:25:23 -0400
committerGitHub <noreply@github.com>2020-03-19 21:25:23 -0400
commita8f67b15e1747d32411f17742f4d1d327d2a2803 (patch)
treeeb5bf935f312643b9f021c7f04743fbab02a8dec
parent63ca7a02eac9328f4c26d625954f8758151f1361 (diff)
Add status field to container State (#221)
-rw-r--r--src/rep.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rep.rs b/src/rep.rs
index 5ae99dd..ededa6e 100644
--- a/src/rep.rs
+++ b/src/rep.rs
@@ -131,6 +131,7 @@ pub struct State {
pub started_at: DateTime<Utc>,
#[cfg(not(feature = "chrono"))]
pub started_at: String,
+ pub status: String,
}
type PortDescription = HashMap<String, Option<Vec<HashMap<String, String>>>>;