Trait rustsynth::map::ValueNotArray
source · pub trait ValueNotArray<'map, 'elem: 'map>: Sized {
// Required methods
fn get_iter_from_map(
map: &'map Map<'elem>,
key: &str
) -> Result<ValueIter<'map, 'elem, Self>>;
fn append_to_map(
map: &'map mut Map<'elem>,
key: &str,
x: &Self
) -> Result<()>;
}
Expand description
A trait for values which can be stored in a map.