pub type Row<T, Cols = usize> = Row<Own<T, Cols>>;Expand description
heap allocated resizable row vector.
§note
the memory layout of Row is guaranteed to be row-major, meaning that it has a column stride
of 1.
Aliased Type§
#[repr(transparent)]pub struct Row<T, Cols = usize>(pub Own<T, Cols>);Tuple Fields§
§0: Own<T, Cols>