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