pub type Result<T> = Result<T, GAError>;
A type alias that can be used for fallible functions with google_authenticator.
google_authenticator
pub enum Result<T> { Ok(T), Err(GAError), }
Contains the success value
Contains the error value