Expand description
ยงExtractors
The things that takes the request and extract the data from it.
Like middleware takes the request and decides if its should be handled or
not, the Extractors take the request and extract the data from it, like
headers (UserAgentExtractor), Authorization
(RequiredAuthenticationExtractor) or even validated data!
(ValidationExtractor)
Re-exportsยง
pub use required_authentication_extractor::*;pub use service_provider_extractor::*;pub use validation_extractor::*;
Modulesยง
- validation_
extractor ๐