1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-08-02 02:35:04 +00:00

allow to access application state during configuration stage

This commit is contained in:
Nikolay Kim 2018-04-26 09:05:07 -07:00
parent c5b9bed478
commit fd876efa68

View file

@ -200,6 +200,12 @@ where
}
}
/// Get reference to the application state
pub fn state(&self) -> &S {
let parts = self.parts.as_ref().expect("Use after finish");
&parts.state
}
/// Set application prefix.
///
/// Only requests that match the application's prefix get