Trait orx_selfref_col::MemoryReclaimer

source ·
pub trait MemoryReclaimer<V>: Clone + Default
where V: Variant,
{ // Required method fn reclaim_nodes<P>(col: &mut CoreCol<V, P>) -> bool where P: PinnedVec<Node<V>>; }
Expand description

Memory reclaimer which reorganizes the collection nodes and brings node utilization to 100%.

Required Methods§

source

fn reclaim_nodes<P>(col: &mut CoreCol<V, P>) -> bool
where P: PinnedVec<Node<V>>,

Memory reclaimer which reorganizes the collection nodes and brings node utilization to 100%.

Object Safety§

This trait is not object safe.

Implementors§