Skip to main content

KeyBuffer

Type Alias KeyBuffer 

Source
pub type KeyBuffer<const CAP: usize = KEY_STACK_CAP> = Buffer<CAP>;
Expand description

Inline-backed key buffer with a configurable byte capacity.

The buffer provides CAP bytes of inline storage. Operations requiring greater capacity spill it to the heap. KeyBuf selects the crate’s default key capacity.

Aliased Type§

pub struct KeyBuffer<const CAP: usize = KEY_STACK_CAP> { /* private fields */ }