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
use http::header::HeaderValue;
pub trait TryFromValues: Sized {
fn try_from_values(values: &mut ::Values) -> Option<Self>;
}
impl TryFromValues for HeaderValue {
fn try_from_values(values: &mut ::Values) -> Option<Self> {
values
.next()
.cloned()
}
}
pub fn from_comma_delimited<T, E>(values: &mut ::Values) -> Option<E>
where
T: ::std::str::FromStr,
E: ::std::iter::FromIterator<T>,
{
values
.flat_map(|value| {
value
.to_str()
.into_iter()
.flat_map(|string| {
string
.split(',')
.filter_map(|x| match x.trim() {
"" => None,
y => Some(y)
})
.map(|x| x.parse().map_err(|_| ()))
})
})
.collect::<Result<E, ()>>()
.ok()
}