fix: responder impl

This commit is contained in:
Strix 2023-10-14 22:39:17 +02:00
parent 02f0270fb1
commit f378e685f9
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
3 changed files with 9 additions and 8 deletions

2
Cargo.lock generated
View file

@ -634,7 +634,7 @@ checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c"
[[package]]
name = "milly"
version = "0.1.0"
version = "0.1.2"
dependencies = [
"actix-web",
]

View file

@ -1,6 +1,6 @@
[package]
name = "milly"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -95,15 +95,16 @@ impl Element {
}
#[cfg(feature = "actix")]
use actix_web::{HttpRequest, HttpResponse, HttpResponseBuilder, Responder};
use actix_web::{HttpRequest, HttpResponse, Responder, body::BoxBody, http::{StatusCode, header::ContentType}};
#[cfg(feature = "actix")]
impl Responder for Element {
type Body = String;
type Body = BoxBody;
fn respond_to(self, req: &HttpRequest) -> HttpResponse<Self::Body> {
HttpResponse::Ok()
.body(self.into())
.finish()
fn respond_to(self, _: &HttpRequest) -> HttpResponse<Self::Body> {
HttpResponse::build(StatusCode::OK)
.insert_header(ContentType::html())
.body(self.to_string())
}
}