folio_annot/lib.rs
1//! PDF annotation types — reading, creating, and modifying annotations.
2//!
3//! Covers all 28 PDF annotation types defined in ISO 32000-2:2020 §12.5.
4
5mod annot;
6mod border;
7mod types;
8
9pub use annot::{Annot, AnnotFlags, AnnotType};
10pub use border::{BorderStyle, BorderStyleType};
11pub use types::*;