IntoMultipartResponse

Trait IntoMultipartResponse 

Source
pub trait IntoMultipartResponse {
    // Required method
    fn into_multipart_response(self, boundary: u128) -> Response;
}

Required Methods§

Source

fn into_multipart_response(self, boundary: u128) -> Response

Implementors§

Source§

impl<S, T> IntoMultipartResponse for S
where S: Stream<Item = T> + Send + 'static, T: Into<Part> + Send,