diff options
Diffstat (limited to 'askama_actix/src/lib.rs')
-rw-r--r-- | askama_actix/src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/askama_actix/src/lib.rs b/askama_actix/src/lib.rs index e0f78ca..742c7f2 100644 --- a/askama_actix/src/lib.rs +++ b/askama_actix/src/lib.rs @@ -3,12 +3,12 @@ use bytes::BytesMut; use actix_web::{error::ErrorInternalServerError, Error, HttpResponse}; -pub trait TemplateIntoResponse { - fn into_response(&self) -> ::std::result::Result<HttpResponse, Error>; +pub trait TemplateToResponse { + fn to_response(&self) -> ::std::result::Result<HttpResponse, Error>; } -impl<T: askama::Template> TemplateIntoResponse for T { - fn into_response(&self) -> ::std::result::Result<HttpResponse, Error> { +impl<T: askama::Template> TemplateToResponse for T { + fn to_response(&self) -> ::std::result::Result<HttpResponse, Error> { let mut buffer = BytesMut::with_capacity(self.size_hint()); self.render_into(&mut buffer) .map_err(|_| ErrorInternalServerError("Template parsing error"))?; |