pub trait JsonGetter<K>: DiagnosticsHierarchyGetter<K>where
    K: Clone + AsRef<str>,{
    // Provided methods
    fn get_pretty_json(&self) -> String { ... }
    fn get_json(&self) -> String { ... }
}

Provided Methods§

Implementors§

source§

impl<K, T> JsonGetter<K> for Twhere K: Clone + AsRef<str>, T: DiagnosticsHierarchyGetter<K>,