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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
use std::borrow::Cow;
use std::ffi::{OsStr, OsString};
use crate::types::{Dsn, ParseDsnError};
pub trait IntoDsn {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError>;
}
impl<I: IntoDsn> IntoDsn for Option<I> {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError> {
match self {
Some(into_dsn) => into_dsn.into_dsn(),
None => Ok(None),
}
}
}
impl IntoDsn for () {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError> {
Ok(None)
}
}
impl<'a> IntoDsn for &'a str {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError> {
if self.is_empty() {
Ok(None)
} else {
self.parse().map(Some)
}
}
}
impl<'a> IntoDsn for Cow<'a, str> {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError> {
let x: &str = &self;
x.into_dsn()
}
}
impl<'a> IntoDsn for &'a OsStr {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError> {
self.to_string_lossy().into_dsn()
}
}
impl IntoDsn for OsString {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError> {
self.as_os_str().into_dsn()
}
}
impl IntoDsn for String {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError> {
self.as_str().into_dsn()
}
}
impl<'a> IntoDsn for &'a Dsn {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError> {
Ok(Some(self.clone()))
}
}
impl IntoDsn for Dsn {
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError> {
Ok(Some(self))
}
}