Trait interner::PoolKind

source ·
pub trait PoolKind<S>: Clone + PartialEq + PoolKindSealed<S> { }
Expand description

A kind of interning pool. Currently there are only two types of pools:

Implementors§

source§

impl<T, S> PoolKind<S> for &'static GlobalPool<T, S>where T: Poolable + Debug + Clone + Eq + PartialEq + Hash + Ord + PartialOrd, S: BuildHasher,

source§

impl<T, S> PoolKind<S> for SharedPool<T, S>where T: Poolable + Debug + Clone + Eq + PartialEq + Hash + Ord + PartialOrd, S: BuildHasher,