pub trait Resolve {
type Error;
// Required method
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.