pub trait DeserializeOwned: for<'de> Deserialize<'de> { }
Expand description
A type implements DeserializeOwned
if it does not borrow any data out of the buffer. In other words, it can
be deserialized for any buffer lifetime.
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.