pub trait Resolve {
type Error: Error + Send + Sync + 'static;
fn resolve(&self, ptr: &Pointer) -> Result<&Value, Error>;
}Expand description
Resolve is implemented by types which can resolve a reference to a
serde_json::Value from the path in a JSON Pointer.