Crate bufpool_fixed

source ·

Modules

Structs

  • Thread-safe pool of FixedBuf values, which are byte arrays with a fixed length. This can be cheaply cloned to share the same underlying pool around. The maximum length is 2^64, and the minimum alignment is 64. This allows storing the pointer and capacity in one usize, making it much faster to move the FixedBuf value around.