pub enum InfoDataError {
Owned(Error),
}
Variants§
Owned(Error)
Some error occurred while trying to wrap the info data in an owned object, which is required for authentication on the server. The wrapped error further described the problem.
Trait Implementations§
Source§impl Debug for InfoDataError
impl Debug for InfoDataError
Source§impl Display for InfoDataError
impl Display for InfoDataError
Source§impl Error for InfoDataError
impl Error for InfoDataError
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<Error> for InfoDataError
impl From<Error> for InfoDataError
Source§impl From<InfoDataError> for PrepareError
impl From<InfoDataError> for PrepareError
Source§fn from(source: InfoDataError) -> Self
fn from(source: InfoDataError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InfoDataError
impl RefUnwindSafe for InfoDataError
impl Send for InfoDataError
impl Sync for InfoDataError
impl Unpin for InfoDataError
impl UnwindSafe for InfoDataError
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