pub trait KeyErrorPolicyIn<I: Operand, G: ErrorGroup>: Clone + 'static {
type Output: Operand;
// Required method
fn build(&self, input: I) -> Self::Output;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".