Skip to main content

Error

Trait Error 

Source
pub trait Error: Send + 'static { }
Expand description

Helper trait for pipe-able transport error.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> Error for T
where T: Send + 'static,

Available on non-WebAssembly only.