Skip to main content

AfterDeleteUser

Trait AfterDeleteUser 

Source
pub trait AfterDeleteUser: Send + Sync {
    // Required method
    fn after_delete<'life0, 'life1, 'async_trait>(
        &'life0 self,
        user: &'life1 UserInfo,
    ) -> Pin<Box<dyn Future<Output = AuthResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

Hook invoked after a user has been deleted.

Required Methods§

Source

fn after_delete<'life0, 'life1, 'async_trait>( &'life0 self, user: &'life1 UserInfo, ) -> Pin<Box<dyn Future<Output = AuthResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§