mirror of
https://github.com/actix/actix-web.git
synced 2025-03-11 14:01:35 +00:00
allow to access application state during configuration stage
This commit is contained in:
parent
c5b9bed478
commit
fd876efa68
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue