pub trait PullerError:
Send
+ Unpin
+ 'static {
// Provided method
fn is_irrecoverable(&self) -> bool { ... }
}Provided Methods§
fn is_irrecoverable(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".