pub type StackVec<T> = SmallVec<[T; 64]>;Expand description
A stack-allocated buffer.
Aliased Type§
pub struct StackVec<T> { /* private fields */ }Trait Implementations§
Source§impl<T: CType> BufferInstance<T> for StackVec<T>
impl<T: CType> BufferInstance<T> for StackVec<T>
Source§fn read(&self) -> BufferConverter<'_, T>
fn read(&self) -> BufferConverter<'_, T>
Borrow this buffer as a
BufferConverter.