1 2 3 4 5 6 7 8 9
use std::collections::HashMap; use ron::Value; #[derive(Default, Clone, Debug, PartialEq)] pub struct Style { pub properties: HashMap<String, Value>, pub states: HashMap<String, HashMap<String, Value>>, }