1
0
mirror of https://github.com/actix/actix-website synced 2024-11-28 10:32:38 +01:00
actix-website/examples/responses/src/identity.rs

27 lines
588 B
Rust
Raw Normal View History

2019-06-17 21:15:33 +02:00
// <identity>
2019-06-26 20:15:03 +02:00
use actix_web::{
2019-12-28 18:59:48 +01:00
http::ContentEncoding, middleware, dev::BodyEncoding, HttpResponse,
2019-06-26 20:15:03 +02:00
};
2019-06-17 21:15:33 +02:00
2019-12-28 18:59:48 +01:00
async fn index() -> HttpResponse {
2019-06-17 21:15:33 +02:00
HttpResponse::Ok()
// v- disable compression
.encoding(ContentEncoding::Identity)
.body("data")
}
2019-12-28 18:59:48 +01:00
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
2019-06-26 07:58:47 +02:00
use actix_web::{web, App, HttpServer};
2019-06-26 20:15:03 +02:00
HttpServer::new(|| {
App::new()
.wrap(middleware::Compress::default())
.route("/", web::get().to(index))
})
2019-12-28 18:59:48 +01:00
.bind("127.0.0.1:8088")?
2019-06-26 20:15:03 +02:00
.run()
2019-12-28 18:59:48 +01:00
.await
}
2019-06-26 20:15:03 +02:00
// </identity>