|
@@ -103,7 +103,10 @@ where
|
|
|
offset_in_parent: u8,
|
|
|
/// The slots storing `XEntry`s, which point to user-given items for leaf nodes and other
|
|
|
/// `XNode`s for interior nodes.
|
|
|
+ #[cfg(not(feature = "slab-friendly"))]
|
|
|
slots: [XEntry<I>; SLOT_SIZE],
|
|
|
+ #[cfg(feature = "slab-friendly")]
|
|
|
+ slots: alloc::boxed::Box<[XEntry<I>; SLOT_SIZE]>,
|
|
|
/// The marks representing whether each slot is marked or not.
|
|
|
///
|
|
|
/// Users can set mark or unset mark on user-given items, and a leaf node or an interior node
|
|
@@ -120,7 +123,10 @@ impl<I: ItemEntry> XNode<I> {
|
|
|
Self {
|
|
|
height,
|
|
|
offset_in_parent: offset,
|
|
|
+ #[cfg(not(feature = "slab-friendly"))]
|
|
|
slots: [XEntry::EMPTY; SLOT_SIZE],
|
|
|
+ #[cfg(feature = "slab-friendly")]
|
|
|
+ slots: alloc::boxed::Box::new([XEntry::EMPTY; SLOT_SIZE]),
|
|
|
marks: [Mark::EMPTY; NUM_MARKS],
|
|
|
}
|
|
|
}
|
|
@@ -147,7 +153,10 @@ impl<I: ItemEntry> XNode<I> {
|
|
|
}
|
|
|
|
|
|
pub fn entries_mut(&mut self) -> &mut [XEntry<I>] {
|
|
|
- &mut self.slots
|
|
|
+ #[cfg(not(feature = "slab-friendly"))]
|
|
|
+ return &mut self.slots;
|
|
|
+ #[cfg(feature = "slab-friendly")]
|
|
|
+ return self.slots.as_mut();
|
|
|
}
|
|
|
|
|
|
pub fn is_marked(&self, offset: u8, mark: usize) -> bool {
|