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
/// The structs and enums in this module are approximate mocks
/// of the correspondingly-named concepts in the public API surface.
///
/// The primary differences here are:
///
/// (1) The data members are public, which allows expected values
/// to be declared inline in unit tests.
///
/// (2) The `Debug` implementations use the name of the corresponding
/// concept in the public API surface so that debug output is
/// easier to comprehend.
pub use Attribute;
pub use InterpretedValue;
pub use Author;
pub use AuthorLine;
pub use Catalog;
pub use Document;
pub use Header;
pub use RefEntry;
pub use RevisionLine;