pub trait Poolable {
// Required methods
fn capacity(&self) -> usize;
fn alloc(size: usize) -> Self;
}Expand description
The trait required to be able to use a type in BytePool.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.