-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoption_string_value.rs
44 lines (36 loc) · 1.09 KB
/
option_string_value.rs
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
use std::borrow::Cow;
#[derive(Clone)]
pub struct OptionStringValue(pub Option<Cow<'static, str>>);
pub trait IntoOptionStringValue {
fn into_option_string_value(self) -> OptionStringValue;
}
impl IntoOptionStringValue for Cow<'static, str> {
fn into_option_string_value(self) -> OptionStringValue {
OptionStringValue(Some(self))
}
}
impl IntoOptionStringValue for String {
fn into_option_string_value(self) -> OptionStringValue {
OptionStringValue(Some(Cow::Owned(self)))
}
}
impl IntoOptionStringValue for &'static str {
fn into_option_string_value(self) -> OptionStringValue {
OptionStringValue(Some(Cow::Borrowed(self)))
}
}
impl IntoOptionStringValue for Option<Cow<'static, str>> {
fn into_option_string_value(self) -> OptionStringValue {
OptionStringValue(self)
}
}
impl IntoOptionStringValue for Option<String> {
fn into_option_string_value(self) -> OptionStringValue {
OptionStringValue(self.map(Cow::Owned))
}
}
impl IntoOptionStringValue for Option<&'static str> {
fn into_option_string_value(self) -> OptionStringValue {
OptionStringValue(self.map(Cow::Borrowed))
}
}