Trait vortex_array::IntoArrayData

source ·
pub trait IntoArrayData {
    // Required method
    fn into_array(self) -> ArrayData;
}
Expand description

Consume self and turn it into an ArrayData infallibly.

Implementation of this array should never fail.

Required Methods§

Implementations on Foreign Types§

source§

impl<T: NativePType> IntoArrayData for Vec<T>

Implementors§