Struct ReqData
pub struct ReqData<T>(/* private fields */)
where
T: Clone + 'static;
Expand description
Request-local data extractor.
Request-local data is arbitrary data attached to an individual request, usually
by middleware. It can be set via extensions_mut
on HttpRequest
or ServiceRequest
.
Unlike app data, request data is dropped when the request has finished processing. This makes it useful as a kind of messaging system between middleware and request handlers. It uses the same types-as-keys storage system as app data.
§Mutating Request Data
Note that since extractors must output owned data, only types that impl Clone
can use this
extractor. A clone is taken of the required request data and can, therefore, not be directly
mutated in-place. To mutate request data, continue to use HttpRequest::extensions_mut
or
re-insert the cloned data back into the extensions map. A DerefMut
impl is intentionally not
provided to make this potential foot-gun more obvious.
§Examples
#[derive(Debug, Clone, PartialEq)]
struct FlagFromMiddleware(String);
/// Use the `ReqData<T>` extractor to access request data in a handler.
async fn handler(
req: HttpRequest,
opt_flag: Option<web::ReqData<FlagFromMiddleware>>,
) -> impl Responder {
// use an option extractor if middleware is not guaranteed to add this type of req data
if let Some(flag) = opt_flag {
assert_eq!(&flag.into_inner(), req.extensions().get::<FlagFromMiddleware>().unwrap());
}
HttpResponse::Ok()
}
Implementations§
§impl<T> ReqData<T>where
T: Clone + 'static,
impl<T> ReqData<T>where
T: Clone + 'static,
pub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes the ReqData
, returning its wrapped data.
Trait Implementations§
§impl<T> Apiv2Schema for ReqData<T>where
T: Clone,
impl<T> Apiv2Schema for ReqData<T>where
T: Clone,
§fn name() -> Option<String>
fn name() -> Option<String>
§fn description() -> &'static str
fn description() -> &'static str
§fn raw_schema() -> DefaultSchemaRaw
fn raw_schema() -> DefaultSchemaRaw
§fn schema_with_ref() -> DefaultSchemaRaw
fn schema_with_ref() -> DefaultSchemaRaw
§fn security_scheme() -> Option<SecurityScheme>
fn security_scheme() -> Option<SecurityScheme>
fn header_parameter_schema() -> Vec<Parameter<DefaultSchemaRaw>>
§impl<T> FromRequest for ReqData<T>where
T: Clone + 'static,
impl<T> FromRequest for ReqData<T>where
T: Clone + 'static,
§fn from_request(
req: &HttpRequest,
_: &mut Payload,
) -> <ReqData<T> as FromRequest>::Future
fn from_request( req: &HttpRequest, _: &mut Payload, ) -> <ReqData<T> as FromRequest>::Future
Self
from request parts asynchronously.§fn extract(req: &HttpRequest) -> Self::Future
fn extract(req: &HttpRequest) -> Self::Future
Self
from request head asynchronously. Read more