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
//! If the `dump` feature is enabled, expose an API to optionally
//! allow dumping to a `String` instead of to stdout. This is
//! useful if you're running in wasm, which doesn't support stdout.
use Mutex;
/// If `None` (the default), dump to stdout. If `Some(s)`, dump by
/// appending to `s`
static DUMP_BUFFER: = new;
/// Enable dumping to a `String` (default is to dump to stdout)
/// Retrieve (and clear) the `String` dump buffer
/// Dump a `&str` to either stdout or the `String` buffer