summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAntoine Büsch <antoine.busch@gmail.com>2018-10-07 22:35:24 +1100
committerAntoine Büsch <antoine.busch@gmail.com>2018-10-07 22:35:24 +1100
commit751043423967f306ab095d3a02e801e2aae05c30 (patch)
treea4eef6061fa7f9d2f473c4d1d8359b9ca15a391e /examples
parent613231db0a6f5fcf2a6aeaed8df15dceb8927112 (diff)
Rename fields from rep structs to use snake case
Diffstat (limited to 'examples')
-rw-r--r--examples/images.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/images.rs b/examples/images.rs
index 531cd02..195ea06 100644
--- a/examples/images.rs
+++ b/examples/images.rs
@@ -5,6 +5,6 @@ fn main() {
let images = docker.images().list(&Default::default()).unwrap();
println!("docker images in stock");
for i in images {
- println!("{:?}", i.RepoTags);
+ println!("{:?}", i.repo_tags);
}
}