autapi 0.0.1

Automatic OpenAPI specification from function signatures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
---
source: autapi/src/schema/impls/maps.rs
expression: "serde_json::from_value::<SerdeAdapter<BTreeMap<String,\ni32>>>(json!({ \"two\": 2, \"three\": 3, }))"
---
Ok(
    SerdeAdapter(
        {
            "three": 3,
            "two": 2,
        },
    ),
)