pub trait PoolKind<S>: Clone + PartialEq + PoolKindSealed<S> { }
Expand description
A kind of interning pool. Currently there are only two types of pools:
- Global, used through the
global::StringPool
,GlobalPath
, andGlobalBuffer
types. - Shared, used through the
StringPool
,PathPool
, andBufferPool
types.