1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! Any kind of PDF objects. Every object that can be added to the PDF is a "plugin".
//!
//! Plugins are type that do not have to do with the core structure of PDF
//! (such as pagination, etc) but are "extensions" to the core PDF model.
//!
//! They can range from simple (graphics, video, audio, annotations, etc.)
//!
//! A public-facing plugin must implement `IntoPdfObject`. Internally, a plugin
//! may consist of sub-plugins (for example stream objects).

pub mod graphics;
pub mod media;
pub mod interactive;
pub mod xmp;
pub mod misc;
pub mod security;