bearing 0.1.0-alpha.5

A Rust port of Apache Lucene
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0
//! Codec implementations for reading and writing Lucene index formats.

pub(crate) mod codec_file_handle;
pub(crate) mod codec_footers;
pub(crate) mod codec_headers;
pub mod competitive_impact;
pub mod fields_producer;
pub mod lucene103;
pub mod lucene90;
pub mod lucene94;
pub mod lucene99;
pub(crate) mod packed_readers;
pub(crate) mod packed_writers;