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
//! Generic utilities
/// Transform a parameter value into an Option.
/// # Example
/// ```rust
/// use service_io::util::IntoOption;
///
/// fn foo(param: impl IntoOption<String>) -> Option<String> {
/// return param.into_some();
/// }
///
/// let expected = Some(String::from("data"));
///
/// assert_eq!(expected, foo(Some(String::from("data"))));
/// assert_eq!(expected, foo(String::from("data")));
/// assert_eq!(expected, foo(Some("data")));
/// assert_eq!(expected, foo("data"));
/// ```