Skip to main content

Dict

Type Alias Dict 

Source
pub type Dict<'a> = BTreeMap<Cow<'a, [u8]>, Value<'a>>;
Expand description

An alias for a dictionary mapping byte strings to Values

Aliased Type§

pub struct Dict<'a> { /* private fields */ }

Trait Implementations§

Source§

impl<'a> TryFromValue<'a> for &'a Dict<'a>

Source§

fn try_from(value: &'a Value<'_>) -> Option<Self>