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
#[cfg(feature = "rustc_serialize")]
pub mod rustc_integration;
#[cfg(not(feature ="rustc_serialize"))]
pub mod serde_integration;



/// 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),));
/// ```
#[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
pub struct Serialized<T>(pub T);

/// 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);
/// ```
#[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
pub struct Deserialized<T>(pub T);

#[derive(Debug)]
pub struct DeserializedIr<T> {
    bytes: Vec<u8>,
    output: Deserialized<T>,
}