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
use crateOwnedValue;
use crateResult;
use DeserializeOwned;
use Serialize;
/// Tries to convert a struct that implements serde's serialize into
/// an `OwnedValue`
///
/// # Errors
///
/// Will return `Err` if value fails to be turned into a owned value
/// Tries to convert a `OwnedValue` into a struct that implements
/// serde's Deserialize interface
///
/// # Errors
///
/// Will return `Err` if `value` fails to be deserialized
/// Tries to convert a `&OwnedValue` into a struct that implements
/// serde's Deserialize interface
///
/// # Errors
///
/// Will return `Err` if `value` fails to be deserialized