RowTemp

Trait RowTemp 

Source
pub trait RowTemp:
    AsMut<[i32]>
    + Default
    + Debug
    + Sealed {
    // Required method
    fn set_len(&mut self, len: usize);
}
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].

Required Methods§

Source

fn set_len(&mut self, len: usize)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl RowTemp for Vec<i32>

Source§

fn set_len(&mut self, len: usize)

Source§

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

Source§

fn set_len(&mut self, len: usize)

Implementors§