#multipart #web #actix-web #http #actix

actix-web-multipart-file

save multipart's files into temporary files

2 releases

Uses old Rust 2015

0.1.1 Sep 23, 2018
0.1.0 Sep 8, 2018

#43 in #multipart

45 downloads per month

MIT/Apache

11KB
178 lines

Save multipart file data into temporary files.

Documents


lib.rs:

Save multipart files in requests into temporary files

Examples


fn handle_multipart(multiparts: Multiparts) -> FutureResponse<HttpResponse> {
    multiparts
        .and_then(|field| {
            // do something with field
        })
    // ...
}

Dependencies

~25–38MB
~615K SLoC