pub trait OnKeyErrorOf<A>: Operand {
type ReturnOperand<D>
where D: Diagnostic,
A: KeyErrorPolicyOf<Self, D>;
// Required method
fn on_key_error_of<D>(&self, policy: A) -> Self::ReturnOperand<D>
where D: Diagnostic,
A: KeyErrorPolicyOf<Self, D>;
}Required Associated Types§
type ReturnOperand<D> where D: Diagnostic, A: KeyErrorPolicyOf<Self, D>
Required Methods§
fn on_key_error_of<D>(&self, policy: A) -> Self::ReturnOperand<D>where
D: Diagnostic,
A: KeyErrorPolicyOf<Self, D>,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".