mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-05-22 11:10:40 +00:00
25 lines
434 B
Rust
25 lines
434 B
Rust
pub mod schema;
|
|
pub mod writer;
|
|
pub mod analyzer;
|
|
pub mod reader;
|
|
pub mod codec;
|
|
pub mod searcher;
|
|
pub mod collector;
|
|
pub mod serialize;
|
|
pub mod store;
|
|
pub mod index;
|
|
pub mod fastfield;
|
|
pub mod fastdivide;
|
|
pub mod merger;
|
|
pub mod timer;
|
|
|
|
use std::error;
|
|
use std::io;
|
|
|
|
pub fn convert_to_ioerror<E: 'static + error::Error + Send + Sync>(err: E) -> io::Error {
|
|
io::Error::new(
|
|
io::ErrorKind::InvalidData,
|
|
err
|
|
)
|
|
}
|