Map

Type Alias Map 

Source
pub type Map<'a> = HashMap<Cow<'a, str>, MapValue<'a>>;
Expand description

Map literal used by options and aggregate constants.

Aliased Type§

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

Trait Implementations§

Source§

impl<'a> FromBorrowedIter<'a> for Map<'a>

Source§

type Item = (&'a str, MapValue<'a>)

Source§

fn from_borrowed_iter<T: IntoIterator<Item = (&'a str, MapValue<'a>)>>( iter: T, ) -> Self