MeiliSearch/milli/src/heed_codec/mod.rs

40 lines
1.1 KiB
Rust
Raw Normal View History

mod beu16_str_codec;
mod beu32_str_codec;
mod byte_slice_ref;
2021-06-16 18:33:33 +02:00
pub mod facet;
mod field_id_word_count_codec;
mod fst_set_codec;
2020-10-21 15:51:48 +02:00
mod obkv_codec;
mod roaring_bitmap;
mod roaring_bitmap_length;
mod str_beu32_codec;
mod str_ref;
2020-09-22 12:38:12 +02:00
mod str_str_u8_codec;
2023-11-27 11:52:22 +01:00
pub use byte_slice_ref::BytesRefCodec;
use heed::BoxedError;
pub use str_ref::StrRefCodec;
use thiserror::Error;
pub use self::beu16_str_codec::BEU16StrCodec;
pub use self::beu32_str_codec::BEU32StrCodec;
2021-06-16 18:33:33 +02:00
pub use self::field_id_word_count_codec::FieldIdWordCountCodec;
pub use self::fst_set_codec::FstSetCodec;
2020-10-21 15:51:48 +02:00
pub use self::obkv_codec::ObkvCodec;
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,
};
2023-05-03 12:21:58 +02:00
pub use self::str_beu32_codec::{StrBEU16Codec, StrBEU32Codec};
pub use self::str_str_u8_codec::{U8StrStrCodec, UncheckedU8StrStrCodec};
pub trait BytesDecodeOwned {
type DItem;
fn bytes_decode_owned(bytes: &[u8]) -> Result<Self::DItem, BoxedError>;
}
#[derive(Error, Debug)]
#[error("the slice is too short")]
pub struct SliceTooShortError;