pub enum Error {
Protocol(Kind),
UnsupportedExtension,
InvalidServer,
Authentication(String),
InvalidUser(String),
}
Expand description
The SCRAM mechanism error cases.
Variants§
Protocol(Kind)
A message wasn’t formatted as required. Kind
contains further information.
RFC5803 section 7 describes the format of the exchanged messages.
UnsupportedExtension
The server required a mandatory extension to be present that this client doesn’t support.
InvalidServer
The server couldn’t be validated. This usually means that the server didn’t posess a stored key to verify the credentials.
Authentication(String)
The server rejected the authentication request. String
contains a message from the server.
InvalidUser(String)
The username supplied was not valid
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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