1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00

docs: mention result is wrapped in Data in data_factory() docs (#3251)

This commit is contained in:
Vojtech Kral 2024-01-18 13:32:27 +01:00 committed by GitHub
parent 2915bb7d90
commit d453b15ddd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -129,6 +129,8 @@ where
/// ///
/// Data items are constructed during application initialization, before the server starts /// Data items are constructed during application initialization, before the server starts
/// accepting requests. /// accepting requests.
///
/// The returned data value `D` is wrapped as [`Data<D>`].
pub fn data_factory<F, Out, D, E>(mut self, data: F) -> Self pub fn data_factory<F, Out, D, E>(mut self, data: F) -> Self
where where
F: Fn() -> Out + 'static, F: Fn() -> Out + 'static,