pub trait Delete {
    type Error;

    fn delete(&mut self, ptr: &Pointer) -> Result<Option<Value>, Self::Error>;
}
Expand description

Delete is implemented by types which can internally remove a value based on a JSON Pointer

Required Associated Types

Error associated with Delete

Required Methods

Attempts to internally delete a value based upon a Pointer.

Implementations on Foreign Types

Implementors