raws_show/
dynamo.rs

1use super::*;
2
3impl Show for aws_sdk_dynamodb::types::TableDescription {
4    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
5        Box::new(fmtools::fmt!(
6            { self.table_name()._fmt() } " "
7            { self.table_id()._fmt() }
8        ))
9    }
10}