pub enum DeleteDataError {
Owned(Error),
}
Variants§
Owned(Error)
Some error occurred while trying to wrap the deletion 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 DeleteDataError
impl Debug for DeleteDataError
Source§impl Display for DeleteDataError
impl Display for DeleteDataError
Source§impl Error for DeleteDataError
impl Error for DeleteDataError
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<DeleteDataError> for PrepareError
impl From<DeleteDataError> for PrepareError
Source§fn from(source: DeleteDataError) -> Self
fn from(source: DeleteDataError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeleteDataError
impl RefUnwindSafe for DeleteDataError
impl Send for DeleteDataError
impl Sync for DeleteDataError
impl Unpin for DeleteDataError
impl UnwindSafe for DeleteDataError
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