Trait IntoValueMap

Source
pub trait IntoValueMap<T> {
    // Required method
    fn into_value_map(self) -> HashMap<String, Value<T>>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<T, U> IntoValueMap<T> for &HashMap<String, U>
where U: IntoValue<T> + Clone,

Source§

impl<T, U> IntoValueMap<T> for HashMap<String, U>
where U: IntoValue<T>,

Implementors§