Skip to main content

pdf_annot/
lib.rs

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