pub trait NewInterceptor {
type Error: 'static;
type Interceptor: Interceptor<Error = Self::Error>;
// Required method
fn new_interceptor(&self) -> Self::Interceptor;
}
pub trait NewInterceptor {
type Error: 'static;
type Interceptor: Interceptor<Error = Self::Error>;
// Required method
fn new_interceptor(&self) -> Self::Interceptor;
}