Merge pull request #1144 from Twey/master

client(feat): add an accessor for the request body
This commit is contained in:
Sean McArthur
2017-04-20 09:31:30 -07:00
committed by GitHub

View File

@@ -46,6 +46,10 @@ impl<B> Request<B> {
#[inline] #[inline]
pub fn method(&self) -> &Method { &self.method } pub fn method(&self) -> &Method { &self.method }
/// Read the Request body.
#[inline]
pub fn body(&self) -> Option<&B> { self.body.as_ref() }
/// Set the Method of this request. /// Set the Method of this request.
#[inline] #[inline]
pub fn set_method(&mut self, method: Method) { self.method = method; } pub fn set_method(&mut self, method: Method) { self.method = method; }