pub trait JSONPaths {
    fn json_paths(&self, explode_array: bool, inspect_arrays: bool) -> Vec<String> ;
    fn json_paths_types(
        &self,
        explode_array: bool,
        inspect_arrays: bool
    ) -> IndexMap<String, String>; }

Required Methods§

Implementors§