[][src]Trait multipart::server::hyper::MultipartHandler

pub trait MultipartHandler: Send + Sync {
    fn handle_multipart<'a, 'k>(
        &self,
        multipart: Multipart<Request<'a, 'k>>,
        response: Response<'a, Fresh>
    ); }

A trait defining a type that can handle an incoming multipart request.

Extends to closures of the type Fn(Multipart<Request>, Response<Fresh>), and subsequently static functions.

Required Methods

Generate a response from this multipart request.

Implementors

impl<F> MultipartHandler for F where
    F: Fn(Multipart<Request>, Response<Fresh>),
    F: Send + Sync
[src]