pub trait AuthenticationPreDeleteInterceptor: Send + Sync {
// Required method
fn intercept<'a>(
&self,
ctx: &mut AuthenticationPreDeleteContext<'a>,
) -> Result<()>;
}Required Methods§
fn intercept<'a>( &self, ctx: &mut AuthenticationPreDeleteContext<'a>, ) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".