pub trait HeaderType {
// Required method
fn from_request(req: &HttpRequest) -> Result<Self, ExtractError>
where Self: Sized;
}Expand description
A type that can be extracted from a request header
pub trait HeaderType {
// Required method
fn from_request(req: &HttpRequest) -> Result<Self, ExtractError>
where Self: Sized;
}A type that can be extracted from a request header