Trait IntoArray

Source
pub trait IntoArray {
    // Required method
    fn into_array(self) -> Array;
}
Expand description

Consume self and turn it into an Array infallibly.

Implementation of this array should never fail.

Required Methods§

Implementations on Foreign Types§

Source§

impl<'a> IntoArray for ALPArray

Source§

impl<'a> IntoArray for ALPRDArray

Source§

impl<'a> IntoArray for ByteBoolArray

Source§

impl<'a> IntoArray for DateTimePartsArray

Source§

impl<'a> IntoArray for DictArray

Source§

impl<'a> IntoArray for BitPackedArray

Source§

impl<'a> IntoArray for DeltaArray

Source§

impl<'a> IntoArray for FoRArray

Source§

impl<'a> IntoArray for FSSTArray

Source§

impl<'a> IntoArray for RoaringBoolArray

Source§

impl<'a> IntoArray for RoaringIntArray

Source§

impl<'a> IntoArray for RunEndBoolArray

Source§

impl<'a> IntoArray for RunEndArray

Source§

impl<'a> IntoArray for ZigZagArray

Source§

impl<T> IntoArray for Vec<T>
where T: NativePType,

Implementors§