Trait jsonptr::ResolveMut

source ·
pub trait ResolveMut {
    // Required method
    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§

source

fn resolve_mut(&mut self, ptr: &Pointer) -> Result<&mut Value, Error>

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

Implementations on Foreign Types§

source§

impl ResolveMut for Value

source§

fn resolve_mut(&mut self, ptr: &Pointer) -> Result<&mut Value, Error>

Implementors§