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.

Required Associated Types

Error associated with Resolve

Required Methods

Resolve a reference to a serde_json::Value based on the path in a Pointer.

Implementations on Foreign Types

Implementors