pub trait ResultBacktrace {
type Value;
type Error;
// Required methods
fn map_trace<E>(
self,
f: impl FnOnce(Self::Error) -> E,
) -> Result<Self::Value, Backtraced<E>>;
fn map_trace_into<E: From<Self::Error>>(
self,
) -> Result<Self::Value, Backtraced<E>>;
fn backtrace(self) -> Self;
}
Required Associated Types§
Required Methods§
Sourcefn map_trace<E>(
self,
f: impl FnOnce(Self::Error) -> E,
) -> Result<Self::Value, Backtraced<E>>
fn map_trace<E>( self, f: impl FnOnce(Self::Error) -> E, ) -> Result<Self::Value, Backtraced<E>>
Maps the traced error. Use this instead of map_err.
Sourcefn map_trace_into<E: From<Self::Error>>(
self,
) -> Result<Self::Value, Backtraced<E>>
fn map_trace_into<E: From<Self::Error>>( self, ) -> Result<Self::Value, Backtraced<E>>
Convert the error type using into().
use std::io;
use error_backtrace::{Result, ResultBacktrace};
struct MyError(io::Error);
impl From<io::Error> for MyError {
fn from(value: io::Error) -> Self {
Self(value)
}
}
fn convert(res: Result<(), io::Error>) -> Result<(), MyError> {
res.map_trace_into()
}
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.