Actix-web 3. from Middleware to RequestHandler data transferring

Does the data transferring mechanism from Middleware (adding any data in Middleware) to RequestHandler (getting this data in RequestHandler by Data-Extractor) in actix_web::App::data() forkflow - is the PerRequest mechanism?
I want this data to be deleted after Response.


This wrong. This way is not PerRequest, but PerThread. The right way in solution.

I think, this way ( https://github.com/actix/actix-web/issues/1444#issuecomment-644634241 ) - is what i am looking for.