File: hello-world.rs

package info (click to toggle)
rust-actix-http 3.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,168 kB
  • sloc: makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,246 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use std::{convert::Infallible, io, time::Duration};

use actix_http::{header::HeaderValue, HttpService, Request, Response, StatusCode};
use actix_server::Server;
use tracing::info;

#[actix_rt::main]
async fn main() -> io::Result<()> {
    env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));

    Server::build()
        .bind("hello-world", ("127.0.0.1", 8080), || {
            HttpService::build()
                .client_request_timeout(Duration::from_secs(1))
                .client_disconnect_timeout(Duration::from_secs(1))
                .on_connect_ext(|_, ext| {
                    ext.insert(42u32);
                })
                .finish(|req: Request| async move {
                    info!("{:?}", req);

                    let mut res = Response::build(StatusCode::OK);
                    res.insert_header(("x-head", HeaderValue::from_static("dummy value!")));

                    let forty_two = req.conn_data::<u32>().unwrap().to_string();
                    res.insert_header(("x-forty-two", HeaderValue::from_str(&forty_two).unwrap()));

                    Ok::<_, Infallible>(res.body("Hello world!"))
                })
                .tcp()
        })?
        .run()
        .await
}