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
//! Type conversion utilities
use Display;
use FromStr;
/// Return value or default if None
///
/// Example:
/// ```rust
/// use toolchest::types::default_to;
/// assert_eq!(default_to(Some(5), 0), 5);
/// assert_eq!(default_to(None, 7), 7);
/// ```
/// Convert any Display type to String safely
///
/// Example:
/// ```rust
/// use toolchest::types::to_string_safe;
/// assert_eq!(to_string_safe(42), "42");
/// ```
/// Parse string or return default value
///
/// Example:
/// ```rust
/// use toolchest::types::parse_or_default;
/// let x: i32 = parse_or_default("not a number");
/// assert_eq!(x, 0);
/// let y: i32 = parse_or_default("12");
/// assert_eq!(y, 12);
/// ```
/// Parse string or return provided default
///
/// Example:
/// ```rust
/// use toolchest::types::parse_or;
/// let x: i32 = parse_or("oops", 5);
/// assert_eq!(x, 5);
/// let y: i32 = parse_or("10", 0);
/// assert_eq!(y, 10);
/// ```