pub trait JsonPsr {
type Out<'out, T>
where Self: 'out;
// Required method
fn parse_into<T: Deserialize>(&self) -> Self::Out<'_, T>;
}Required Associated Types§
Required Methods§
fn parse_into<T: Deserialize>(&self) -> Self::Out<'_, T>
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.