pub trait RequestExtensions {
    fn captures(&self) -> Option<Captures<'_>>;
    fn parsed_captures<C: CaptureParsing>(&self) -> Result<C>;
    fn state<S: Send + Sync + 'static>(&self) -> Option<Arc<S>>;
}

Required Methods

Implementations on Foreign Types

Implementors