pub trait RegisterInterceptor<T: CommandTransaction>: Send + Sync {
// Required method
fn register(self: Arc<Self>, interceptors: &mut Interceptors<T>);
}Expand description
Trait for self-registering interceptors This allows interceptors that implement multiple interceptor traits to register themselves in all appropriate chains with a single Arc instance