#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

#44 in #multipart

Download history 27/week @ 2024-02-18 12/week @ 2024-02-25 9/week @ 2024-03-03 13/week @ 2024-03-10 9/week @ 2024-03-17 11/week @ 2024-03-24 39/week @ 2024-03-31 8/week @ 2024-04-07 4/week @ 2024-04-14

62 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

~24–36MB
~600K SLoC