pub trait Delete {
type Value;
// Required method
fn delete(&mut self, ptr: &Pointer) -> Option<Self::Value>;
}Expand description
Delete is implemented by types which can internally remove a value based on a JSON Pointer
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".