1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00

remove Response constraint

This commit is contained in:
Nikolay Kim 2019-02-20 21:02:23 -08:00
parent 7f749ac9cc
commit 60a8da5c05

View File

@ -16,7 +16,7 @@ use crate::header::{Header, IntoHeaderValue};
use crate::message::{ConnectionType, Head, Message, ResponseHead};
/// An HTTP Response
pub struct Response<B: MessageBody = Body> {
pub struct Response<B = Body> {
head: Message<ResponseHead>,
body: ResponseBody<B>,
error: Option<Error>,