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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
extern crate alloc;
extern crate std;
/// Serde deserialization support.
/// Parse data or a reader into a sequence of Rsn events.
/// Serde serialization support.
/// Parse data or a reader into a sequence of tokens.
/// Types for generically representing the parsed value from an Rsn document.
/// Types for writing Rsn.
/// Deserializes `D` from `source` using the default Rsn
/// [`Config`](parser::Config).
///
/// ```rust
/// let deserialized: Vec<usize> = rsn::from_str("[1, 2, 3]").unwrap();
/// assert_eq!(deserialized, vec![1, 2, 3]);
/// ```
///
/// # Errors
///
/// Returns an error if `source` isn't valid Rsn or cannot be deserialized as
/// `D`.
/// Deserializes `D` from `slice` using the default Rsn
/// [`Config`](parser::Config).
///
/// ```rust
/// let deserialized: Vec<usize> = rsn::from_slice(b"[1, 2, 3]").unwrap();
/// assert_eq!(deserialized, vec![1, 2, 3]);
/// ```
///
/// # Errors
///
/// Returns an error if `slice` isn't valid Rsn or cannot be deserialized as
/// `D`.
/// Deserializes `D` from `reader` using the default Rsn
/// [`Config`](parser::Config).
///
/// ```rust
/// let deserialized: Vec<usize> = rsn::from_reader(&b"[1, 2, 3]"[..]).unwrap();
/// assert_eq!(deserialized, vec![1, 2, 3]);
/// ```
///
/// # Errors
///
/// Returns an error if `reader` returns an error while reading, doesn't contain
/// valid Rsn, or cannot be deserialized as `D`.
/// Serializes `value` into a `String` using the default Rsn
/// [`Config`](ser::Config).
///
/// ```rust
/// let serialized = rsn::to_string(&vec![1, 2, 3]).unwrap();
/// assert_eq!(serialized, "[1,2,3]");
/// ```
///
/// # Errors
///
/// Rsn itself does not produce any errors while serializing values. This
/// function will return errors that arise within `Serialize` implementations
/// encountered while serializing `value`.
/// Serializes `value` into a `Vec<u8>` using the default Rsn
/// [`Config`](ser::Config).
///
/// ```rust
/// let serialized = rsn::to_vec(&vec![1, 2, 3]).unwrap();
/// assert_eq!(serialized, b"[1,2,3]");
/// ```
///
/// # Errors
///
/// Rsn itself does not produce any errors while serializing values. This
/// function will return errors that arise within `Serialize` implementations
/// encountered while serializing `value`.
/// Serializes `value` into a writer using the default Rsn
/// [`Config`](ser::Config).
///
/// ```rust
/// let mut serialized = Vec::new();
/// rsn::to_writer(&vec![1, 2, 3], &mut serialized).unwrap();
/// assert_eq!(serialized, b"[1,2,3]");
/// ```
///
/// # Errors
///
/// Returns any errors occurring while serializing `value` or while writing to
/// `writer`.
/// Serializes `value` into a `String` using
/// [`Config::pretty()`](ser::Config::pretty()).
///
/// ```rust
/// let input = vec![1, 2, 3];
/// let serialized = rsn::to_string_pretty(&input).unwrap();
/// assert_eq!(serialized, "[\n 1,\n 2,\n 3\n]");
/// ```
///
/// # Errors
///
/// Rsn itself does not produce any errors while serializing values. This
/// function will return errors that arise within `Serialize` implementations
/// encountered while serializing `value`.