pub trait AuthApiMut {
    type Error;
    fn authenticate_user(
        &mut self,
        body: Option<AuthRequest>
    ) -> Result<AuthResponse, Self::Error>; }

Associated Types

Required methods

User authentication

Implementors