fcb_core/static_btree/mod.rs
1pub mod entry;
2pub mod error;
3pub mod key;
4#[cfg(feature = "http")]
5#[cfg(test)]
6// Also used by the `packed_rtree` HTTP tests.
7pub(crate) mod mocked_http_range_client;
8pub mod payload;
9pub mod query;
10pub mod stree;
11
12pub use entry::*;
13pub use error::*;
14pub use key::*;
15pub use ordered_float::OrderedFloat as Float;
16pub use payload::*;
17pub use query::*;
18pub use stree::*;
19
20pub const DEFAULT_BRANCHING_FACTOR: u16 = 16;
21
22// Add basic tests or examples here later if needed
23#[cfg(test)]
24mod tests {}