pub trait BTreeMapJsonExt {
// Required methods
fn parse_json_object(value: &str) -> Result<BTreeMap<String, Value>>;
fn try_from_json_map(
json_map: JsonMap<String, JsonValue>,
) -> Result<BTreeMap<String, Value>>;
}Required Methods§
fn parse_json_object(value: &str) -> Result<BTreeMap<String, Value>>
fn try_from_json_map( json_map: JsonMap<String, JsonValue>, ) -> Result<BTreeMap<String, Value>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".