Files
tantivy/src/core/mod.rs
Paul Masurel 389cdffb4b blop
2016-05-01 15:08:44 +09:00

17 lines
293 B
Rust

pub mod writer;
pub mod reader;
pub mod codec;
pub mod searcher;
pub mod index;
pub mod merger;
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
)
}