raws_show/
s3.rs

1use super::*;
2
3impl Show for aws_sdk_s3::types::Bucket {
4    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
5        Box::new(fmtools::fmt!(
6            { self.creation_date()._fmt() } "\t" { self.name()._fmt() }
7        ))
8    }
9}
10
11impl Show for aws_sdk_s3::types::Object {
12    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
13        Box::new(fmtools::fmt!(
14             { self.last_modified()._fmt() } " "
15             { self.size()._fmt() } " "
16             { self.key()._fmt() }
17        ))
18    }
19}