Trait poem_openapi::auth::BasicAuthorization
source · pub trait BasicAuthorization: Sized {
// Required method
fn from_request(req: &Request) -> Result<Self>;
}
Expand description
Represents a basic authorization extractor.
Required Methods§
sourcefn from_request(req: &Request) -> Result<Self>
fn from_request(req: &Request) -> Result<Self>
Extract from the HTTP request.