pub trait ErrorChainHubExt {
// Required method
fn capture_error_chain<T>(&self, e: &T) -> Uuid
where T: ChainedError,
T::ErrorKind: Debug + Display;
}
👎Deprecated: The
error_chain
integration is deprecated and will be removed in the future.Expand description
Hub extension methods for working with error chain
Required Methods§
Sourcefn capture_error_chain<T>(&self, e: &T) -> Uuid
👎Deprecated: The error_chain
integration is deprecated and will be removed in the future.
fn capture_error_chain<T>(&self, e: &T) -> Uuid
error_chain
integration is deprecated and will be removed in the future.Captures an error chain on a specific hub.
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.
Implementations on Foreign Types§
Source§impl ErrorChainHubExt for Hub
impl ErrorChainHubExt for Hub
Source§fn capture_error_chain<T>(&self, e: &T) -> Uuid
fn capture_error_chain<T>(&self, e: &T) -> Uuid
👎Deprecated: The
error_chain
integration is deprecated and will be removed in the future.