Type Alias AuthResult

Source
pub type AuthResult<T> = Result<T, AuthError>;

Aliased Type§

enum AuthResult<T> {
    Ok(T),
    Err(AuthError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AuthError)

Contains the error value