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 mutate data based on a
serde_json::Value.