pdf_annot/lib.rs
1//! PDF annotation engine.
2//!
3//! Provides typed access to all annotation types defined in ISO 32000-2 §12.5,
4//! and annotation creation via the `write` feature (backed by lopdf).
5
6mod annotation;
7mod appearance;
8pub mod appearance_writer;
9pub mod builder;
10pub mod error;
11mod geometric;
12mod link;
13mod markup;
14mod stamp;
15mod types;
16
17pub use annotation::*;
18pub use appearance::*;
19pub use geometric::*;
20pub use link::*;
21pub use markup::*;
22pub use stamp::*;
23pub use types::*;