pub struct Error {
pub kind: ErrorKind,
pub description: String,
}
Expand description
Describes an arbitrary error that prevented an operation from completing.
Fields§
§kind: ErrorKind
The general kind of the error. Code that decides how to respond to an error should read only this field in making its decision.
description: String
Human-readable failure description.
Implementations§
source§impl Error
impl Error
pub fn failed(description: String) -> Self
pub fn overloaded(description: String) -> Self
pub fn disconnected(description: String) -> Self
pub fn unimplemented(description: String) -> Self
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()
source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§impl From<FromUtf8Error> for Error
impl From<FromUtf8Error> for Error
source§fn from(err: FromUtf8Error) -> Self
fn from(err: FromUtf8Error) -> Self
Converts to this type from the input type.
source§impl From<NotInSchema> for Error
impl From<NotInSchema> for Error
source§fn from(e: NotInSchema) -> Self
fn from(e: NotInSchema) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
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