1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
// Copyright 2016 `multipart` Crate Developers
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//! Client- and server-side abstractions for HTTP `multipart/form-data` requests.
//!
//! ###Features:
//! This documentation is built with all features enabled.
//!
//! * `client`: The client-side abstractions for generating multipart requests.
//!
//! * `server`: The server-side abstractions for parsing multipart requests.
//!
//! * `mock`: Provides mock implementations of core `client` and `server` traits for debugging
//! or non-standard use.
//!
//! * `hyper`: Integration with the [Hyper](https://github.com/hyperium/hyper) HTTP library
//! for client and/or server depending on which other feature flags are set.
//!
//! * `iron`: Integration with the [Iron](http://ironframework.io) web application
//! framework. See the [`server::iron`](server/iron/index.html) module for more information.
//!
//! * `tiny_http`: Integration with the [`tiny_http`](https://github.com/frewsxcv/tiny-http)
//! crate. See the [`server::tiny_http`](server/tiny_http/index.html) module for more information.
//!
//! * `nickel_`: Integration with the [Nickel](http://nickel.rs) web application framework.
//! See the [`server::nickel`](server/nickel/index.html) module for more information. Enables the `hyper`
//! feature.
extern crate log;
extern crate env_logger;
extern crate mime;
extern crate mime_guess;
extern crate rand;
extern crate tempdir;
extern crate hyper;
extern crate iron;
extern crate nickel;
extern crate tiny_http;
use Rng;
/// Chain a series of results together, with or without previous results.
///
/// ```
/// #[macro_use] extern crate multipart;
///
/// fn try_add_one(val: u32) -> Result<u32, u32> {
/// if val < 5 {
/// Ok(val + 1)
/// } else {
/// Err(val)
/// }
/// }
///
/// fn main() {
/// let res = chain_result! {
/// try_add_one(1),
/// prev -> try_add_one(prev),
/// prev -> try_add_one(prev),
/// prev -> try_add_one(prev)
/// };
///
/// println!("{:?}", res);
/// }
///
/// ```