[][src]Trait multipart::server::HttpRequest

pub trait HttpRequest {
    type Body: Read;
    fn multipart_boundary(&self) -> Option<&str>;
fn body(self) -> Self::Body; }

A server-side HTTP request that may or may not be multipart.

May be implemented by mutable references if providing the request or body by-value is undesirable.

Associated Types

type Body: Read

The body of this request.

Loading content...

Required methods

fn multipart_boundary(&self) -> Option<&str>

Get the boundary string of this request if it is a POST request with the Content-Type header set to multipart/form-data.

The boundary string should be supplied as an extra value of the Content-Type header, e.g. Content-Type: multipart/form-data; boundary={boundary}.

fn body(self) -> Self::Body

Return the request body for reading.

Loading content...

Implementations on Foreign Types

impl<'r, 'a, 'b> HttpRequest for &'r mut IronRequest<'a, 'b>
[src]

type Body = &'r mut IronBody<'a, 'b>

Loading content...

Implementors

impl<'a> HttpRequest for ServerRequest<'a>
[src]

type Body = Self

impl<'a, 'b> HttpRequest for HyperRequest<'a, 'b>
[src]

type Body = Self

impl<'r> HttpRequest for &'r mut TinyHttpRequest
[src]

type Body = &'r mut dyn Read

impl<'r, 'a, 'b> HttpRequest for &'r mut HyperRequest<'a, 'b>
[src]

type Body = Self

impl<'r, 'mw: 'r, 'server: 'mw, D: 'mw> HttpRequest for Maybe<'r, 'mw, 'server, D>
[src]

type Body = &'r mut HyperRequest<'mw, 'server>

Loading content...