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
/// Use it to pass `T: Encodable` as JSON to a prepared statement.
///
/// ```ignore
/// #[derive(RustcEncodable)]
/// struct EncodableStruct {
/// // ...
/// }
///
/// conn.prep_exec("INSERT INTO table (json_column) VALUES (?)",
/// (Serialized(EncosdableStruct),));
/// ```
;
/// Use it to parse `T: Decodable` from `Value`.
///
/// ```ignore
/// #[derive(RustcDecodable)]
/// struct DecodableStruct {
/// // ...
/// }
/// // ...
/// let (Deserialized(val),): (Deserialized<DecodableStruct>,)
/// = from_row(row_with_single_json_column);
/// ```
;