pub enum ClosureAuthError {
ClosureError(ClosureError),
UidParseError(String),
}
Expand description
An error during the authenticate()
call
Variants§
ClosureError(ClosureError)
An error occured during the serialization, sending, receiving, or deserialization of the request
UidParseError(String)
An error occured while parsing the uid
field from the authenticate
response
Trait Implementations§
Source§impl Debug for ClosureAuthError
impl Debug for ClosureAuthError
Source§impl Display for ClosureAuthError
impl Display for ClosureAuthError
Source§impl Error for ClosureAuthError
impl Error for ClosureAuthError
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<AuthenticationError> for ClosureAuthError
impl From<AuthenticationError> for ClosureAuthError
Source§fn from(value: AuthenticationError) -> Self
fn from(value: AuthenticationError) -> Self
Converts to this type from the input type.
Source§impl From<ClosureAuthError> for Error
impl From<ClosureAuthError> for Error
Source§fn from(value: ClosureAuthError) -> Self
fn from(value: ClosureAuthError) -> Self
Converts to this type from the input type.
Source§impl From<ClosureError> for ClosureAuthError
impl From<ClosureError> for ClosureAuthError
Source§fn from(source: ClosureError) -> Self
fn from(source: ClosureError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ClosureAuthError
impl !RefUnwindSafe for ClosureAuthError
impl !Send for ClosureAuthError
impl !Sync for ClosureAuthError
impl Unpin for ClosureAuthError
impl !UnwindSafe for ClosureAuthError
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