Struct actix_web::State [−][src]
Access an application state
S
- application state type
Example
#[macro_use] extern crate serde_derive; use actix_web::{http, App, Path, State}; /// Application state struct MyApp { msg: &'static str, } #[derive(Deserialize)] struct Info { username: String, } /// extract path info using serde fn index(data: (State<MyApp>, Path<Info>)) -> String { let (state, path) = data; format!("{} {}!", state.msg, path.username) } fn main() { let app = App::with_state(MyApp { msg: "Welcome" }).resource( "/{username}/index.html", // <- define path parameters |r| r.method(http::Method::GET).with(index), ); // <- use `with` extractor }