Trait kas_core::layout::RowTemp

source ·
pub trait RowTemp: AsMut<[i32]> + Default + Debug + Sealed { }
Expand description

Temporary storage type.

For dynamic-length rows and fixed-length rows with more than 16 items use Vec<i32>. For fixed-length rows up to 16 items, use [i32; rows].

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl RowTemp for Vec<i32>

source§

impl<const L: usize> RowTemp for [i32; L]
where [i32; L]: Default,

Implementors§