pub trait TryIntoUnknown {
type Error;
// Required method
fn try_into_unknown(self) -> Result<Unknown, Self::Error>;
}Expand description
Trait for types that can be serialized into an Unknown value.
Required Associated Types§
Required Methods§
fn try_into_unknown(self) -> Result<Unknown, Self::Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".