Serde based serialization support and misc utilities for working with Dynamodb via the rusoto_dynamodb
crate.
rusoto_dynamodb
data types VIA serde_json
. This is an alternative to serde_dynamodb
(which is mostly unimplemented).```rust use dynamodb_data::*; use std::collections::HashMap;
let payload: HashMap
The fields macro syntax has changed from fields!{a: b}
to fields!{a => b}
.
Since It looks better for common cases like:
rust
fields!{
“:a” => ::some_module::fun(),
}