mirror of
https://github.com/actix/actix-web.git
synced 2025-01-17 12:45:31 +00:00
remove Response constraint
This commit is contained in:
parent
7f749ac9cc
commit
60a8da5c05
1 changed files with 1 additions and 1 deletions
|
@ -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>,
|
||||
|
|
Loading…
Reference in a new issue