Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/therustmonk/vectorize

vectorize crate
https://github.com/therustmonk/vectorize

Last synced: 2 days ago
JSON representation

vectorize crate

Awesome Lists containing this project

README

        

# vectorize

Converts maps to vecs for serialization.

Usage:

```rust

#[derive(Deserialize, Serialize)]
struct MyStruct {
ordinary_field: String,
#[serde(with = "vectorize")]
no_string_key_map: HashMap<(u8, bool, String), String>,
}

```