Trait NewInterceptor

Source
pub trait NewInterceptor {
    type Error: 'static;
    type Interceptor: Interceptor<Error = Self::Error>;

    // Required method
    fn new_interceptor(&self) -> Self::Interceptor;
}

Required Associated Types§

Source

type Error: 'static

Source

type Interceptor: Interceptor<Error = Self::Error>

Required Methods§

Implementors§