#structs #hashmaps #converting #conversion #value #string #string-string

map2struct

A library for converting string-string hashmaps to structs

1 unstable release

0.1.0 Apr 14, 2024

#100 in #converting

Download history 27/week @ 2024-11-15 15/week @ 2024-11-22 20/week @ 2024-11-29 47/week @ 2024-12-06 24/week @ 2024-12-13 3/week @ 2024-12-27 1/week @ 2025-01-03 2/week @ 2025-01-10 2/week @ 2025-01-17 3/week @ 2025-01-24 3/week @ 2025-01-31 10/week @ 2025-02-07 30/week @ 2025-02-14 17/week @ 2025-02-21 14/week @ 2025-02-28

73 downloads per month

Apache-2.0

5KB

Simple Crate For Converting Hashmaps To Structs

Convert HashMap<String, String> values directly into structs, with optional type conversion per field.

Provides one main trait and derive macro, named Map2Struct.

Example

use std::collections::HashMap;
use map2struct::Map2Struct;

#[derive(Map2Struct)]
struct Person {
    name: String,
    age: u32,
}

let mut map = HashMap::new();
map.insert("name".to_string(), "John".to_string());
map.insert("age".to_string(), "30".to_string());
let person = Person::from_map(map).expect("Parsing failed");
assert_eq!(person.name, "John");
assert_eq!(person.age, 30);

Fields are parsed using the .parse method of String values.

The following validations steps are performed:

  1. Check if all fields are present
  2. Check that no additional fields are present
  3. Check type conversions

Dependencies

~215–660KB
~15K SLoC