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
use DctSourceOptions;
use Schema;
/// The result of parsing a `.dct` dictionary.
///
/// Distinguishes the two ways a dictionary can be paired with its
/// data: an external file referenced by the `using` clause (or no
/// file at all), vs. data embedded in the same file immediately
/// after the dictionary's closing `}`.
///
/// Both variants surface only the [`Schema`] (and, for embedded
/// data, the buffered reader positioned at the first byte of the
/// data section) — the caller pairs them with
/// [`DctReader::options`](super::dct_reader::DctReader::options) so
/// reader-side knobs like `record_warnings` can be configured
/// uniformly across both paths.