Trait ExtractorError

Source
pub trait ExtractorError:
    StdError
    + Send
    + Sync {
    // Required methods
    fn error_kind(&self) -> ErrorKind;
    fn into_std(self) -> Box<dyn StdError + Send + Sync>;
}

Required Methods§

Source

fn error_kind(&self) -> ErrorKind

Source

fn into_std(self) -> Box<dyn StdError + Send + Sync>

Implementations on Foreign Types§

Source§

impl ExtractorError for Infallible

Implementors§

Source§

impl<E> ExtractorError for InternalError<E>
where E: Into<Box<dyn StdError + Send + Sync>> + StdError + Send + Sync,

Source§

impl<T> ExtractorError for PathError<T>
where T: StdError + Send + Sync + 'static,