pub trait Assign {
type Error: Error + Send + Sync + 'static;
fn assign(
&mut self,
ptr: &Pointer,
value: Value
) -> Result<Assignment<'_>, Self::Error>;
}Expand description
Assign is implemented by types which can internally assign a
serde_json::Value by a JSON Pointer.