fix: responder impl
This commit is contained in:
parent
02f0270fb1
commit
f378e685f9
3 changed files with 9 additions and 8 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -634,7 +634,7 @@ checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c"
|
|||
|
||||
[[package]]
|
||||
name = "milly"
|
||||
version = "0.1.0"
|
||||
version = "0.1.2"
|
||||
dependencies = [
|
||||
"actix-web",
|
||||
]
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue