jsonptr

Trait Delete

Source
pub trait Delete {
    type Error;

    // Required method
    fn delete(&mut self, ptr: &Pointer) -> Option<Value>;
}
Expand description

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

Required Associated Types§

Source

type Error

Error associated with Delete

Required Methods§

Source

fn delete(&mut self, ptr: &Pointer) -> Option<Value>

Attempts to internally delete a value based upon a Pointer.

Implementations on Foreign Types§

Source§

impl Delete for Value

Implementors§