litchi 0.0.1

High-performance parser for Microsoft Office, OpenDocument, and Apple iWork file formats with unified API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Common types, traits, and utilities shared across formats.
///
/// This module provides unified types and traits used by both OLE2 (legacy)
/// and OOXML (modern) implementations, ensuring a consistent API for users.
pub mod detection;
pub mod error;
pub mod metadata;
pub mod shapes;
pub mod style;

// Re-export commonly used types
pub use detection::{FileFormat, detect_file_format, detect_file_format_from_bytes};
pub use error::{Error, Result};
pub use metadata::Metadata;
pub use shapes::{ShapeType, PlaceholderType};
pub use style::{RGBColor, Length};