pub trait DeserializeOwned: for<'de> Deserialize<'de> { }
Expand description
This crate’s equivalent to serde::DeserializeOwned
This is useful if you want to use trait bounds
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.