#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

#37 in #multipart

Download history 1/week @ 2024-07-12 6/week @ 2024-07-19 9/week @ 2024-07-26 6/week @ 2024-08-02 7/week @ 2024-08-09 3/week @ 2024-08-16 3/week @ 2024-08-23 7/week @ 2024-08-30 7/week @ 2024-09-20 2/week @ 2024-09-27

59 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–36MB
~604K SLoC