Skip to main content

ValBuffer

Type Alias ValBuffer 

Source
pub type ValBuffer<const CAP: usize = VAL_STACK_CAP> = Buffer<CAP>;
Expand description

Inline-backed value buffer with a configurable byte capacity.

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

Aliased Type§

pub struct ValBuffer<const CAP: usize = VAL_STACK_CAP> { /* private fields */ }