pub trait InnerAsRefMut {
// Required method
fn json_value_as_mut(v: &mut JsonValue) -> Option<&mut Self>;
}Expand description
Trait to access to inner value of JsonValue as mutable reference.
This is a mutable version of InnerAsRef.
Required Methods§
fn json_value_as_mut(v: &mut JsonValue) -> Option<&mut Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.