pub struct Error {
pub kind: ErrorKind,
pub extra: 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.
extra: String
Extra context about error
Implementations§
Source§impl Error
impl Error
Sourcepub fn write_fmt(&mut self, fmt: Arguments<'_>)
pub fn write_fmt(&mut self, fmt: Arguments<'_>)
Writes to the extra
field. Does nothing if the “alloc” feature is not enabled.
This is intended to be used with the write!()
macro from core.
pub fn failed(description: String) -> Self
pub fn from_kind(kind: ErrorKind) -> 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 Freeze for Error
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