pub enum PreauthError {
Std(StdError),
NoPreauth {},
}
Variants§
Trait Implementations§
Source§impl Debug for PreauthError
impl Debug for PreauthError
Source§impl Display for PreauthError
impl Display for PreauthError
Source§impl Error for PreauthError
impl Error for PreauthError
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<StdError> for PreauthError
impl From<StdError> for PreauthError
Source§impl PartialEq for PreauthError
impl PartialEq for PreauthError
impl StructuralPartialEq for PreauthError
Auto Trait Implementations§
impl Freeze for PreauthError
impl RefUnwindSafe for PreauthError
impl Send for PreauthError
impl Sync for PreauthError
impl Unpin for PreauthError
impl UnwindSafe for PreauthError
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