summaryrefslogtreecommitdiffstats
path: root/src/rep.rs
diff options
context:
space:
mode:
authorAntoine Büsch <antoine.busch@gmail.com>2018-08-24 14:19:35 +1000
committerAntoine Büsch <antoine.busch@gmail.com>2018-09-29 16:53:26 +1000
commit3fdae16210b484cfd2b9da203334043bcd98cae0 (patch)
tree94be62a0e108acabd486d0394c3a8b79e1cda2f9 /src/rep.rs
parenteec5876731b40f0074a71793efa0b0f4f627989f (diff)
Image.RepoTags seems to be optional (can be null)
Diffstat (limited to 'src/rep.rs')
-rw-r--r--src/rep.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rep.rs b/src/rep.rs
index 9cb972b..72a8430 100644
--- a/src/rep.rs
+++ b/src/rep.rs
@@ -18,7 +18,7 @@ pub struct Image {
pub Id: String,
pub ParentId: String,
pub Labels: Option<HashMap<String, String>>,
- pub RepoTags: Vec<String>,
+ pub RepoTags: Option<Vec<String>>,
pub RepoDigests: Option<Vec<String>>,
pub VirtualSize: u64,
}