summaryrefslogtreecommitdiffstats
path: root/examples/images.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/images.rs')
-rw-r--r--examples/images.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/images.rs b/examples/images.rs
index de04ab9..7a8a094 100644
--- a/examples/images.rs
+++ b/examples/images.rs
@@ -10,8 +10,9 @@ fn main() {
.map(|images| {
for i in images {
println!(
- "{} {:?}",
+ "{} {} {:?}",
i.id,
+ i.created,
i.repo_tags.unwrap_or_else(|| vec!["none".into()])
);
}