1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-30 16:40:21 +02:00

better naming

This commit is contained in:
Nikolay Kim
2017-10-07 00:31:40 -07:00
parent 127cc270da
commit 9b7f2395e5
2 changed files with 4 additions and 8 deletions

View File

@@ -100,10 +100,8 @@ impl<A> HttpMessage<A> where A: Actor<Context=HttpContext<A>> + Route
HttpMessage(HttpMessageItem::Actor(act))
}
/// Create response with empty body
pub fn reply<I>(req: HttpRequest, msg: I) -> Self
where I: IntoHttpResponse
{
/// Send response
pub fn reply<I: IntoHttpResponse>(req: HttpRequest, msg: I) -> Self {
HttpMessage(HttpMessageItem::Message(msg.into_response(req)))
}