zino_extra/format/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Wrappers for manipulating common file formats.
//!
//! ## Feature flags
//!
//! The following optional features are available:
//!
//! | Name          | Description                                          | Default? |
//! |---------------|------------------------------------------------------|----------|
//! | `format-pdf`  | Enables the support for `PDF` documents.             | No       |

#[cfg(feature = "format-pdf")]
mod pdf_document;

#[cfg(feature = "format-pdf")]
pub use pdf_document::PdfDocument;