pub struct Error { /* private fields */ }
Expand description
The error type used by the library.
Errors generally form a chain, with higher-level errors typically
providing additional context for lower level ones. E.g., an IO error
such as file-not-found could be reported by a system level API (such
as std::fs::File::open
) and may be contextualized with the path
to the file attempted to be opened.
use std::fs::File;
use std::error::Error as _;
let path = "/does-not-exist";
let result = File::open(path).with_context(|| format!("failed to open {path}"));
let err = result.unwrap_err();
assert_eq!(err.to_string(), "failed to open /does-not-exist");
// Retrieve the underlying error.
let inner_err = err.source().unwrap();
assert!(inner_err.to_string().starts_with("No such file or directory"));
For convenient reporting, the Display
representation takes care of reporting the complete error chain when
the alternate flag is set:
// > failed to open /does-not-exist: No such file or directory (os error 2)
println!("{err:#}");
The Debug
representation similarly will print
the entire error chain, but will do so in a multi-line format:
// > Error: failed to open /does-not-exist
// >
// > Caused by:
// > No such file or directory (os error 2)
println!("{err:?}");
Implementations§
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 ErrorExt for Error
impl ErrorExt for Error
§type Output = Error
type Output = Error
The output type produced by
context
and
with_context
.source§fn context<C>(self, context: C) -> Self::Outputwhere
C: IntoCowStr,
fn context<C>(self, context: C) -> Self::Outputwhere
C: IntoCowStr,
Add context to this error.
source§fn with_context<C, F>(self, f: F) -> Self::Outputwhere
C: IntoCowStr,
F: FnOnce() -> C,
fn with_context<C, F>(self, f: F) -> Self::Outputwhere
C: IntoCowStr,
F: FnOnce() -> C,
Add context to this error, using a closure for lazy evaluation.
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