pub trait ExtractorError:
StdError
+ Send
+ Sync {
// Required methods
fn error_kind(&self) -> ErrorKind;
fn into_std(self) -> Box<dyn StdError + Send + Sync>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".