logo
pub trait ApiKeyAuthorization: Sized {
    fn from_request(
        req: &Request,
        query: &UrlQuery,
        name: &str,
        in_type: MetaParamIn
    ) -> Result<Self>; }
Expand description

Represents an api key authorization extractor.

Required methods

Extract from the HTTP request.

Implementors