Struct Error
pub struct Error {
kind: ErrorKind,
message: String,
status: ErrorStatus,
operation: &'static str,
context: Vec<(&'static str, String)>,
source: Option<Error>,
backtrace: Backtrace,
}
Expand description
Error is the error struct returned by all opendal functions.
§Display
Error can be displayed in two ways:
- Via
Display
: likeerr.to_string()
orformat!("{err}")
Error will be printed in a single line:
Unexpected, context: { path: /path/to/file, called: send_async } => something wrong happened, source: networking error"
- Via
Debug
: likeformat!("{err:?}")
Error will be printed in multi lines with more details and backtraces (if captured):
Unexpected => something wrong happened
Context:
path: /path/to/file
called: send_async
Source: networking error
Backtrace:
0: opendal::error::Error::new
at ./src/error.rs:197:24
1: opendal::error::tests::generate_error
at ./src/error.rs:241:9
2: opendal::error::tests::test_error_debug_with_backtrace::{{closure}}
at ./src/error.rs:305:41
...
- For conventional struct-style Debug representation, like
format!("{err:#?}")
:
Error {
kind: Unexpected,
message: "something wrong happened",
status: Permanent,
operation: "Read",
context: [
(
"path",
"/path/to/file",
),
(
"called",
"send_async",
),
],
source: Some(
"networking error",
),
}
Fields§
§kind: ErrorKind
§message: String
§status: ErrorStatus
§operation: &'static str
§context: Vec<(&'static str, String)>
§source: Option<Error>
§backtrace: Backtrace
Implementations§
§impl Error
impl Error
pub fn new(kind: ErrorKind, message: impl Into<String>) -> Error
pub fn new(kind: ErrorKind, message: impl Into<String>) -> Error
Create a new Error with error kind and message.
pub fn with_operation(self, operation: impl Into<&'static str>) -> Error
pub fn with_operation(self, operation: impl Into<&'static str>) -> Error
Update error’s operation.
§Notes
If the error already carries an operation, we will push a new context
(called, operation)
.
pub fn with_context(self, key: &'static str, value: impl ToString) -> Error
pub fn with_context(self, key: &'static str, value: impl ToString) -> Error
Add more context in error.
pub fn set_source(self, src: impl Into<Error>) -> Error
pub fn set_source(self, src: impl Into<Error>) -> Error
pub fn set_permanent(self) -> Error
pub fn set_permanent(self) -> Error
Set permanent status for error.
pub fn set_temporary(self) -> Error
pub fn set_temporary(self) -> Error
Set temporary status for error.
By set temporary, we indicate this error is retryable.
pub fn set_persistent(self) -> Error
pub fn set_persistent(self) -> Error
Set persistent status for error.
By setting persistent, we indicate the retry should be stopped.
pub fn is_temporary(&self) -> bool
pub fn is_temporary(&self) -> bool
Check if this error is temporary.
Trait Implementations§
§impl Error for Error
impl Error for Error
§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()
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§
§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request