mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
added response's helper method finish
This commit is contained in:
parent
b9c11b56f8
commit
ccb3f61d70
1 changed files with 5 additions and 0 deletions
|
@ -372,6 +372,11 @@ impl HttpResponseBuilder {
|
||||||
error: None,
|
error: None,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Set an empty body
|
||||||
|
pub fn finish(&mut self) -> Result<HttpResponse, HttpError> {
|
||||||
|
self.body(Body::Empty)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parts<'a>(parts: &'a mut Option<Parts>, err: &Option<HttpError>) -> Option<&'a mut Parts>
|
fn parts<'a>(parts: &'a mut Option<Parts>, err: &Option<HttpError>) -> Option<&'a mut Parts>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue