pub trait ResolveMut {
    fn resolve_mut(&mut self, ptr: &Pointer) -> Result<&mut Value, Error>;
}
Expand description

ResolveMut is implemented by types which can resolve a mutable reference to a serde_json::Value from the path in a JSON Pointer.

Required Methods

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

Implementations on Foreign Types

Implementors