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

Represents a basic authorization extractor.

Required methods

Extract from the HTTP request.

Implementors