[][src]Struct httpcodec::Request

pub struct Request<T> { /* fields omitted */ }

HTTP request message.

Methods

impl<T> Request<T>[src]

pub fn new(
    method: Method,
    target: RequestTarget,
    version: HttpVersion,
    body: T
) -> Self
[src]

Makes a new Request instance with the given request-line components and body.

pub fn method(&self) -> Method[src]

Returns the method of the request.

pub fn request_target(&self) -> RequestTarget[src]

Returns the target of the request.

pub fn http_version(&self) -> HttpVersion[src]

Returns the HTTP version of the request.

pub fn header(&self) -> Header[src]

Returns the header of the request.

pub fn header_mut(&mut self) -> HeaderMut[src]

Returns the mutable header of the request.

pub fn body(&self) -> &T[src]

Returns a reference to the body of the request.

pub fn body_mut(&mut self) -> &mut T[src]

Returns a mutable reference to the body of the request.

pub fn into_body(self) -> T[src]

Takes ownership of the request, and returns its body.

pub fn take_body(self) -> (Request<()>, T)[src]

Splits the head part and the body part of the request.

pub fn map_body<U, F>(self, f: F) -> Request<U> where
    F: FnOnce(T) -> U, 
[src]

Converts the body of the request to U by using the given function.

Trait Implementations

impl<T: Debug> Debug for Request<T>[src]

impl<T: Display> Display for Request<T>[src]

Auto Trait Implementations

impl<T> Unpin for Request<T> where
    T: Unpin

impl<T> Send for Request<T> where
    T: Send

impl<T> Sync for Request<T> where
    T: Sync

impl<T> RefUnwindSafe for Request<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for Request<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]