pub type Result<T> = Result<T, AuthError>;
Convenience alias used throughout the auth crate.
pub enum Result<T> { Ok(T), Err(AuthError), }
Contains the success value
Contains the error value