pub type Result<T> = Result<T, Error>;
Expand description
Result type alias for authentication operations.
This is a convenience type that wraps Result<T, Error>
for all
authentication-related operations.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}