1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 06:57:43 +02: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

View File

@ -129,6 +129,8 @@ where
///
/// Data items are constructed during application initialization, before the server starts
/// 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
where
F: Fn() -> Out + 'static,