omniparse 0.4.0

A Rust toolkit for detecting and extracting metadata, text, and content from various file formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core types and functionality for Omniparse
//!
//! This module provides the fundamental types used throughout the library,
//! including error handling, result types, and the main extractor.

pub mod error;
pub mod extractor;
pub mod result;

// Re-export commonly used types
pub use error::{Error, Result};
pub use extractor::Extractor;
pub use result::{Content, ExtractionResult, Metadata, MetadataValue};