pub enum LoginError {
EmptyCredentials,
InvalidCredentials,
OTPSecretNotFound,
InvalidOTPSecret,
InvalidSession,
SessionNotFound,
ParseIDError,
ParseUsernameError,
ParseSessionHashError,
ParsePrivateChannelError,
ParseAuthTokenError,
MissingAuthToken,
}Expand description
Errors that can occur during user authentication (login flow).
Variants§
EmptyCredentials
InvalidCredentials
OTPSecretNotFound
InvalidOTPSecret
InvalidSession
SessionNotFound
ParseIDError
ParseUsernameError
ParseSessionHashError
ParsePrivateChannelError
ParseAuthTokenError
MissingAuthToken
Trait Implementations§
Source§impl Clone for LoginError
impl Clone for LoginError
impl Copy for LoginError
Source§impl Debug for LoginError
impl Debug for LoginError
Source§impl<'de> Deserialize<'de> for LoginError
impl<'de> Deserialize<'de> for LoginError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for LoginError
impl Display for LoginError
impl Eq for LoginError
Source§impl Error for LoginError
impl Error for LoginError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<LoginError> for Error
impl From<LoginError> for Error
Source§fn from(err: LoginError) -> Self
fn from(err: LoginError) -> Self
Converts to this type from the input type.
Source§impl Hash for LoginError
impl Hash for LoginError
Source§impl PartialEq for LoginError
impl PartialEq for LoginError
Source§impl Serialize for LoginError
impl Serialize for LoginError
impl StructuralPartialEq for LoginError
Auto Trait Implementations§
impl Freeze for LoginError
impl RefUnwindSafe for LoginError
impl Send for LoginError
impl Sync for LoginError
impl Unpin for LoginError
impl UnsafeUnpin for LoginError
impl UnwindSafe for LoginError
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