Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ex0dus-0x/structmap
Procedural macro crate for conversion between Rust structs and associative containers.
https://github.com/ex0dus-0x/structmap
Last synced: 9 days ago
JSON representation
Procedural macro crate for conversion between Rust structs and associative containers.
- Host: GitHub
- URL: https://github.com/ex0dus-0x/structmap
- Owner: ex0dus-0x
- License: mit
- Created: 2020-06-09T05:04:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-16T19:56:08.000Z (about 2 years ago)
- Last Synced: 2024-12-09T15:58:37.234Z (15 days ago)
- Language: Rust
- Homepage:
- Size: 44.9 KB
- Stars: 58
- Watchers: 3
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# structmap
[![Actions][actions-badge]][actions-url]
[![crates.io version][crates-structmap-badge]][crates-structmap]
[![Docs][docs-badge]][docs.rs][actions-badge]: https://github.com/ex0dus-0x/structmap/workflows/CI/badge.svg?branch=master
[actions-url]: https://github.com/ex0dus-0x/structmap/actions[crates-structmap-badge]: https://img.shields.io/crates/v/structmap.svg
[crates-structmap]: https://crates.io/crates/structmap[docs-badge]: https://docs.rs/structmap/badge.svg
[docs.rs]: https://docs.rs/structmapProcedural macro crate for converting between Rust `struct` types and associative containers.
```rust
use std::collections::BTreeMap;
// converting between a struct like ...
struct SomeData {
key: String
}// ... and a BTreeMap like ...
let somedata_hm: BTreeMap = BTreeMap::new();
```This removes the need to pattern match on attributes and keys when making a conversion.
This was largely inspired by [previous work](https://cprimozic.net/blog/writing-a-hashmap-to-struct-procedural-macro-in-rust/) done by [@Ameobea](https://github.com/Ameobea),
but extends on it much further to support conversion both ways, generic value types, and Rust 2018 conventions.## Usage
In your `Cargo.toml` file, include the crate as so:
```toml
[dependencies]
structmap = "0.1"
structmap-derive = "0.1"
```Now let's demonstrate conversion! Note that your `struct` type should extend the `Default` trait for type conversion to account for uninitialized attributes.
__structmap__ supports conversion between two types of map aliases:
1. `StringMap` - Strings for both keys and values. Conversion is supported only one-way at the moment from struct to BTreeMap, but not the other way around.
2. `GenericMap` - Generic [serde](https://docs.serde.rs/serde_json/enum.Value.html)-style `Value`s as values. Conversion is supported both ways, but limited.### Map to Struct
```rust
use structmap::FromMap;
use structmap_derive::FromMap;#[derive(FromMap)]
struct TestStruct {
name: String,
value: i64,
}impl Default for TestStruct {
fn default() -> Self {
Self {
name: String::new(),
value: 0
}
}
}fn main() {
// create a hashmap with key-value pairs
let mut hm = GenericMap::new();// `Value` is an enum wrapper to support genericized types, to support structs
// with varying types for their fields.
hm.insert(String::from("name"), Value::new(String::from("example")));
hm.insert(String::from("value"), Value::new(0_i64));// convert hashmap to struct, and check attributes
let test: TestStruct = TestStruct::from_genericmap(hm);
assert!(test.name == "example");
assert!(test.value == 0);
}
```### Struct to Map
```rust
use structmap::{ToMap, value::Value};
use structmap_derive::ToMap;
use std::collections::BTreeMap;#[derive(ToMap, Default)]
struct TestStruct {
name: String,
value: i64,
}// impl Default ...
fn main() {
let test_struct = TestStruct {
name: String::from("example"),
value: 0,
};// convert struct to generic map, and check attributes
let hm: BTreeMap = TestStruct::to_genericmap(test_struct);
assert!(hm.get("name").unwrap().String().unwrap() == "example");
assert!(hm.get("value").unwrap().i64().unwrap() == 0);let test_struct = TestStruct {
name: String::from("example"),
value: 0,
};// convert struct to string map, and check attributes
let hm: BTreeMap = TestStruct::to_stringmap(test_struct);
assert!(hm.get("name").unwrap() == "example");
assert!(hm.get("value").unwrap() == "0");
}
```Need a different key name when converting from a `struct` to a map container? Use `#[rename]` for
struct attributes!```rust
use structmap::ToMap;
use structmap_derive::ToMap;#[derive(ToMap, Default)]
struct TestStruct {
#[rename(name = "Full Name")]
name: String,#[rename(name = "Data")]
value: String,
}
```## Contributions
All complex types, include dynamic arrays, `Option`s, `Result`s and data structures are not yet
supported (which you can help implement!).Feel free to let me know if there are any outstanding features that should be implemented!
Big thanks to the following contributors:
* [@jose-acevedoflores](https://github.com/jose-acevedoflores)
* [@pedrosoares](https://github.com/pedrosoares)## License
[MIT License](https://codemuch.tech/license.txt)