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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
use crate::rqlite;
//use std::borrow::Cow;
use crate::decode::Decode;
use crate::encode::{Encode, IsNull};
use crate::error::BoxDynError;
use crate::type_info::DataType;
use crate::types::Type;
use crate::{Rqlite, /*RqliteArgumentValue, */ RqliteTypeInfo, RqliteValueRef};

impl Type<Rqlite> for str {
    fn type_info() -> RqliteTypeInfo {
        RqliteTypeInfo(DataType::Text)
    }
}

impl<'q> Encode<'q, Rqlite> for &'q str {
    fn encode_by_ref(&self, args: &mut Vec<rqlite::Value>) -> IsNull {
        args.push(rqlite::Value::String(self.to_string()));

        IsNull::No
    }
}
/*
impl<'r> Decode<'r, Rqlite> for &'r str {
    fn decode(value: RqliteValueRef<'r>) -> Result<Self, BoxDynError> {
        value.text().map(|x| {
          x.as_str()
        })
    }
}
*/
impl Type<Rqlite> for Box<str> {
    fn type_info() -> RqliteTypeInfo {
        <&str as Type<Rqlite>>::type_info()
    }
}

impl Encode<'_, Rqlite> for Box<str> {
    fn encode(self, args: &mut Vec<rqlite::Value>) -> IsNull {
        args.push(rqlite::Value::String(self.to_string()));

        IsNull::No
    }

    fn encode_by_ref(&self, args: &mut Vec<rqlite::Value>) -> IsNull {
        args.push(rqlite::Value::String(self.to_string()));

        IsNull::No
    }
}

impl Decode<'_, Rqlite> for Box<str> {
    fn decode(value: RqliteValueRef<'_>) -> Result<Self, BoxDynError> {
        value.text().map(Box::from)
    }
}

impl Type<Rqlite> for String {
    fn type_info() -> RqliteTypeInfo {
        <&str as Type<Rqlite>>::type_info()
    }
}

impl<'q> Encode<'q, Rqlite> for String {
    fn encode(self, args: &mut Vec<rqlite::Value>) -> IsNull {
        args.push(rqlite::Value::String(self.to_string()));

        IsNull::No
    }

    fn encode_by_ref(&self, args: &mut Vec<rqlite::Value>) -> IsNull {
        args.push(rqlite::Value::String(self.to_string()));

        IsNull::No
    }
}

impl<'r> Decode<'r, Rqlite> for String {
    fn decode(value: RqliteValueRef<'r>) -> Result<Self, BoxDynError> {
        value.text()
    }
}
/*
impl Type<Rqlite> for Cow<'_, str> {
    fn type_info() -> RqliteTypeInfo {
        <&str as Type<Rqlite>>::type_info()
    }

    fn compatible(ty: &RqliteTypeInfo) -> bool {
        <&str as Type<Rqlite>>::compatible(ty)
    }
}

impl<'q> Encode<'q, Rqlite> for Cow<'q, str> {
    fn encode(self, args: &mut Vec<rqlite::Value>) -> IsNull {
        args.push(rqlite::Value::String(self.to_string()));

        IsNull::No
    }

    fn encode_by_ref(&self, args: &mut Vec<rqlite::Value>) -> IsNull {
        args.push(rqlite::Value::String(self.to_string()));

        IsNull::No
    }
}

impl<'r> Decode<'r, Rqlite> for Cow<'r, str> {
    fn decode(value: RqliteValueRef<'r>) -> Result<Self, BoxDynError> {
        value.text().map(Cow::Borrowed)
    }
}
*/