pub trait Serialize {
// Required method
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>;
}Expand description
A type that can be serialized. To serialize, you provide it with a Serializer that then gets instructions from the type on how to serialize itself.
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.