1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![cfg_attr(feature = "dox", feature(doc_cfg))]

#[allow(unused_imports)]
mod auto;
pub use auto::*;

mod color;
mod document;
mod movie;
mod page_range;
mod point;
mod quadrilateral;
mod rectangle;
pub use page_range::PageRange;

pub use auto::builders;
pub mod prelude {
    pub use super::auto::traits::*;
}