wp-model-core 0.8.7

Typed data model crate providing Value, Field, and Record primitives for the Warp PASE stack.
Documentation
1
2
3
4
5
6
7
8
use std::collections::BTreeMap;

use crate::model::Value;
use smol_str::SmolStr;

use super::field::Field;

pub type ObjectMap = BTreeMap<SmolStr, Field<Value>>;