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