Skip to main content

OnBucketErrorIn

Trait OnBucketErrorIn 

Source
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§

Source

type ReturnOperand<G> where G: ErrorGroup, A: BucketErrorPolicyIn<Self, G>

Required Methods§

Source

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".

Implementors§

Source§

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

Source§

type ReturnOperand<G> = <A as BucketErrorPolicyIn<O, G>>::Output where G: ErrorGroup, A: BucketErrorPolicyIn<Self, G>