pub type AuthResult<T> = Result<T, AuthError>;
Result type alias for authentication operations
pub enum AuthResult<T> { Ok(T), Err(AuthError), }
Contains the success value
Contains the error value