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
use Encode;
/// Encode Option 1
///
/// ```
/// use encoder::json::Encode;
///
/// let mut buf = vec![];
/// let mut opt = Some(1);
/// opt.encode(&mut buf);
/// opt = None;
/// opt.encode(&mut buf);
/// assert_eq!(opt.stringify(), r#"null"#);
/// assert_eq!(String::from_utf8_lossy(&buf), r#"1null"#);
/// ```
/// Encode Option 2
///
/// ```
/// use encoder::json::Encode;
///
/// let mut buf = vec![];
/// let mut opt: Option<&dyn Encode> = Some(&1);
/// opt.encode(&mut buf);
/// opt = None;
/// opt.encode(&mut buf);
/// assert_eq!(opt.stringify(), r#"null"#);
/// assert_eq!(String::from_utf8_lossy(&buf), r#"1null"#);
/// ```