pub trait Resolve {
type Value;
type Error;
// Required method
fn resolve(&self, ptr: &Pointer) -> Result<&Self::Value, Self::Error>;
}
Expand description
A trait implemented by types which can resolve a reference to a value type
from a path represented by a JSON Pointer
.