pub struct FixedHeapSoaColumns<const CAP: usize, A = Global>where
A: Allocator,{ /* private fields */ }Trait Implementations§
Source§impl<const CAP: usize, A> Default for FixedHeapSoaColumns<CAP, A>
impl<const CAP: usize, A> Default for FixedHeapSoaColumns<CAP, A>
Source§fn default() -> FixedHeapSoaColumns<CAP, A>
fn default() -> FixedHeapSoaColumns<CAP, A>
Returns the “default value” for a type. Read more
Source§impl<const CAP: usize, A> SoaColumns for FixedHeapSoaColumns<CAP, A>where
A: Allocator,
impl<const CAP: usize, A> SoaColumns for FixedHeapSoaColumns<CAP, A>where
A: Allocator,
fn probe(&self) -> &[Probe]
fn dest(&self) -> &[DestinationHash]
fn cold(&self) -> &[HeldCold]
fn dir(&self) -> &[Option<DirEntry>]
fn dir_mut(&mut self) -> &mut [Option<DirEntry>]
fn push(&mut self, probe: Probe, dest: DestinationHash, cold: HeldCold)
fn overwrite_at( &mut self, slot: usize, probe: Probe, dest: DestinationHash, cold: HeldCold, )
fn swap_remove(&mut self, slot: usize)
fn capacity(&self) -> usize
fn len(&self) -> usize
fn is_empty(&self) -> bool
Auto Trait Implementations§
impl<const CAP: usize, A> Freeze for FixedHeapSoaColumns<CAP, A>where
A: Freeze,
impl<const CAP: usize, A> RefUnwindSafe for FixedHeapSoaColumns<CAP, A>where
A: RefUnwindSafe,
impl<const CAP: usize, A> Send for FixedHeapSoaColumns<CAP, A>where
A: Send,
impl<const CAP: usize, A> Sync for FixedHeapSoaColumns<CAP, A>where
A: Sync,
impl<const CAP: usize, A> Unpin for FixedHeapSoaColumns<CAP, A>where
A: Unpin,
impl<const CAP: usize, A> UnsafeUnpin for FixedHeapSoaColumns<CAP, A>where
A: UnsafeUnpin,
impl<const CAP: usize, A> UnwindSafe for FixedHeapSoaColumns<CAP, A>where
A: UnwindSafe,
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