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 crateConcurrentOption;
/// Trait representing types that can be converted into a standard Option.
///
/// # Examples
///
/// ```rust
/// use orx_concurrent_option::*;
///
/// let con_option: ConcurrentOption<i32> = ConcurrentOption::some(42);
/// assert_eq!(con_option.into_option(), Some(42));
///
/// let option: Option<i32> = Some(42);
/// assert_eq!(option.into_option(), Some(42));
/// ```