2020-09-07 15:42:20 +02:00
|
|
|
mod beu32_str_codec;
|
2022-10-12 09:42:55 +02:00
|
|
|
mod byte_slice_ref;
|
2021-06-16 18:33:33 +02:00
|
|
|
pub mod facet;
|
|
|
|
mod field_id_word_count_codec;
|
2020-10-21 15:51:48 +02:00
|
|
|
mod obkv_codec;
|
2021-02-18 13:56:28 +01:00
|
|
|
mod roaring_bitmap;
|
2021-02-18 14:24:30 +01:00
|
|
|
mod roaring_bitmap_length;
|
2022-10-17 13:51:04 +02:00
|
|
|
mod script_language_codec;
|
2021-10-05 11:18:42 +02:00
|
|
|
mod str_beu32_codec;
|
2022-10-12 09:42:55 +02:00
|
|
|
mod str_ref;
|
2020-09-22 12:38:12 +02:00
|
|
|
mod str_str_u8_codec;
|
2020-06-22 17:56:07 +02:00
|
|
|
|
2022-10-26 13:49:33 +02:00
|
|
|
pub use byte_slice_ref::ByteSliceRefCodec;
|
|
|
|
pub use str_ref::StrRefCodec;
|
|
|
|
|
2020-09-07 15:42:20 +02:00
|
|
|
pub use self::beu32_str_codec::BEU32StrCodec;
|
2021-06-16 18:33:33 +02:00
|
|
|
pub use self::field_id_word_count_codec::FieldIdWordCountCodec;
|
2020-10-21 15:51:48 +02:00
|
|
|
pub use self::obkv_codec::ObkvCodec;
|
2021-02-18 13:56:28 +01:00
|
|
|
pub use self::roaring_bitmap::{BoRoaringBitmapCodec, CboRoaringBitmapCodec, RoaringBitmapCodec};
|
2021-06-16 18:33:33 +02:00
|
|
|
pub use self::roaring_bitmap_length::{
|
|
|
|
BoRoaringBitmapLenCodec, CboRoaringBitmapLenCodec, RoaringBitmapLenCodec,
|
|
|
|
};
|
2022-10-17 13:51:04 +02:00
|
|
|
pub use self::script_language_codec::ScriptLanguageCodec;
|
2023-05-03 12:21:58 +02:00
|
|
|
pub use self::str_beu32_codec::{StrBEU16Codec, StrBEU32Codec};
|
2022-09-14 14:01:53 +02:00
|
|
|
pub use self::str_str_u8_codec::{U8StrStrCodec, UncheckedU8StrStrCodec};
|
2023-06-13 14:41:53 +02:00
|
|
|
|
|
|
|
pub trait BytesDecodeOwned {
|
|
|
|
type DItem;
|
|
|
|
|
|
|
|
fn bytes_decode_owned(bytes: &[u8]) -> Option<Self::DItem>;
|
|
|
|
}
|