pub trait TryIntoValue {
type Error: Error + 'static + Send + Sync;
// Required method
fn try_into_value(self) -> Result<Value, Self::Error>;
}Required Associated Types§
Required Methods§
fn try_into_value(self) -> Result<Value, Self::Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".