#[repr(u8)]pub enum Band {
Inline = 0,
Native = 1,
Partitioned = 2,
ChunkedCold = 3,
}Expand description
How a collection is laid out, which is chosen by size and not by the caller.
Variants§
Inline = 0
Small enough to live inside the index entry’s neighbourhood.
Native = 1
One structure, one owner, in memory.
Partitioned = 2
Split across partitions so a large collection is not one hot object.
ChunkedCold = 3
Spilled, and read back a chunk at a time.
Implementations§
Trait Implementations§
impl Copy for Band
impl Eq for Band
impl StructuralPartialEq for Band
Auto Trait Implementations§
impl Freeze for Band
impl RefUnwindSafe for Band
impl Send for Band
impl Sync for Band
impl Unpin for Band
impl UnsafeUnpin for Band
impl UnwindSafe for Band
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more