pub trait IntoHashMap<T>
where Self: Sized,
{ // Required method fn into_hashmap(value: T) -> HashMap<String, Self>; }

Required Methods§

source

fn into_hashmap(value: T) -> HashMap<String, Self>

Object Safety§

This trait is not object safe.

Implementors§