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

Associated Types

Required methods

User authentication

Implementors