logo
pub trait BearerAuthorization: Sized {
    fn from_request(req: &Request) -> Result<Self>;
}
Expand description

Represents a bearer authorization extractor.

Required Methods

Extract from the HTTP request.

Implementors