pub trait HashMapJsonExt {
    // Required methods
    fn parse_json_object(value: &str) -> Result<HashMap<String, Value>, Error>;
    fn try_from_json_map(
        json_map: Map<String, Value>
    ) -> Result<HashMap<String, Value>, Error>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl HashMapJsonExt for HashMap<String, Value>

Implementors§