pub trait JsonValueExt {
    // Required method
    fn into_map_opt(self) -> Option<JsonMap>;
}
Expand description

自定义对象 JsonValue 也就是 serde_json::Value的功能扩展trait

Required Methods§

source

fn into_map_opt(self) -> Option<JsonMap>

self对象转换为一个map option对象

Implementors§