pub trait FieldsExtractor<Source, Target> {
type Remainder;
// Required method
fn extract_from(source: Source) -> Result<Target, Self::Remainder>;
}Required Associated Types§
Required Methods§
fn extract_from(source: Source) -> Result<Target, Self::Remainder>
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.