pub trait TaskError {
// Required method
fn is_recoverable(&self) -> bool;
}Expand description
An error that is thrown from within a managed task
Required Methods§
fn is_recoverable(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".