pub enum AuthErrorType {
MissingParameter = 10_000,
MissingParameterClientId = 10_001,
MissingParameterScope = 10_002,
MissingParameterRedirectUri = 10_003,
MissingParameterResponseType = 10_004,
MissingParameterCodeChallenge = 10_005,
InvalidParameter = 11_000,
InvalidParameterResponseType = 11_004,
MaxValue = 65_535,
}Variants§
MissingParameter = 10_000
MissingParameterClientId = 10_001
MissingParameterScope = 10_002
MissingParameterRedirectUri = 10_003
MissingParameterResponseType = 10_004
MissingParameterCodeChallenge = 10_005
InvalidParameter = 11_000
InvalidParameterResponseType = 11_004
MaxValue = 65_535
Trait Implementations§
Source§impl Clone for AuthErrorType
impl Clone for AuthErrorType
Source§fn clone(&self) -> AuthErrorType
fn clone(&self) -> AuthErrorType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AuthErrorType
Auto Trait Implementations§
impl Freeze for AuthErrorType
impl RefUnwindSafe for AuthErrorType
impl Send for AuthErrorType
impl Sync for AuthErrorType
impl Unpin for AuthErrorType
impl UnwindSafe for AuthErrorType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more