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§impl<T> OperationModifier for ReqData<T>where
T: Clone,
impl<T> OperationModifier for ReqData<T>where
T: Clone,
§fn update_parameter(
op: &mut Operation<Parameter<DefaultSchemaRaw>, Response<DefaultSchemaRaw>>,
)
fn update_parameter( op: &mut Operation<Parameter<DefaultSchemaRaw>, Response<DefaultSchemaRaw>>, )
§fn update_response(
_op: &mut Operation<Parameter<DefaultSchemaRaw>, Response<DefaultSchemaRaw>>,
)
fn update_response( _op: &mut Operation<Parameter<DefaultSchemaRaw>, Response<DefaultSchemaRaw>>, )
§fn update_definitions(map: &mut BTreeMap<String, DefaultSchemaRaw>)
fn update_definitions(map: &mut BTreeMap<String, DefaultSchemaRaw>)
§fn update_security(
op: &mut Operation<Parameter<DefaultSchemaRaw>, Response<DefaultSchemaRaw>>,
)
fn update_security( op: &mut Operation<Parameter<DefaultSchemaRaw>, Response<DefaultSchemaRaw>>, )
§fn update_security_definitions(map: &mut BTreeMap<String, SecurityScheme>)
fn update_security_definitions(map: &mut BTreeMap<String, SecurityScheme>)
Auto Trait Implementations§
impl<T> Freeze for ReqData<T>where
T: Freeze,
impl<T> RefUnwindSafe for ReqData<T>where
T: RefUnwindSafe,
impl<T> Send for ReqData<T>where
T: Send,
impl<T> Sync for ReqData<T>where
T: Sync,
impl<T> Unpin for ReqData<T>where
T: Unpin,
impl<T> UnwindSafe for ReqData<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)