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

Required Methods

Implementations on Foreign Types

Resolve a mutable value based on the path provided by a JSON Pointer.

Implementors