pub trait Deserialize: Sized {
// Required method
fn begin(out: &mut Option<Self>) -> &mut dyn Visitor;
}
Expand description
Trait for data structures that can be deserialized from a JSON string.
[Refer to the module documentation for examples.][::de]
Required Methods§
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.