Skip to main content

OnBucketErrorOf

Trait OnBucketErrorOf 

Source
pub trait OnBucketErrorOf<A>: Operand {
    type ReturnOperand<D>
       where D: Diagnostic,
             A: BucketErrorPolicyOf<Self, D>;

    // Required method
    fn on_bucket_error_of<D>(&self, policy: A) -> Self::ReturnOperand<D>
       where D: Diagnostic,
             A: BucketErrorPolicyOf<Self, D>;
}

Required Associated Types§

Source

type ReturnOperand<D> where D: Diagnostic, A: BucketErrorPolicyOf<Self, D>

Required Methods§

Source

fn on_bucket_error_of<D>(&self, policy: A) -> Self::ReturnOperand<D>
where D: Diagnostic, A: BucketErrorPolicyOf<Self, D>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<O: Operand, A> OnBucketErrorOf<A> for O

Source§

type ReturnOperand<D> = <A as BucketErrorPolicyOf<O, D>>::Output where D: Diagnostic, A: BucketErrorPolicyOf<Self, D>