| Crates.io | rustamodb |
| lib.rs | rustamodb |
| version | 0.0.6 |
| created_at | 2018-11-17 22:38:02.899237+00 |
| updated_at | 2018-11-18 16:01:39.724308+00 |
| description | A rust library for AWS DynamoDB. |
| homepage | |
| repository | https://github.com/cmac4603/rustamodb |
| max_upload_size | |
| id | 97311 |
| size | 7,466 |
rustamodb is inspired by pynamodb and is a simple to use library for AWS DynamoDB.
Currently very early stages WIP.
extern crate rustamodb;
fn main() {
match rustamodb::scan(&"my_dynamodb_table") {
Ok(scan_output) => {
for item in scan_output {
println!("{:?}", item);
}
},
Err(_) => (),
}
}