Enum datafusion::types::ArrayData[][src]

pub enum ArrayData {
    Boolean(PrimitiveArray<bool>),
    Float32(PrimitiveArray<f32>),
    Float64(PrimitiveArray<f64>),
    Int8(PrimitiveArray<i8>),
    Int16(PrimitiveArray<i16>),
    Int32(PrimitiveArray<i32>),
    Int64(PrimitiveArray<i64>),
    UInt8(PrimitiveArray<u8>),
    UInt16(PrimitiveArray<u16>),
    UInt32(PrimitiveArray<u32>),
    UInt64(PrimitiveArray<u64>),
    Utf8(ListArray<u8>),
    Struct(Vec<Rc<Array>>),
}

Variants

Trait Implementations

impl From<Vec<bool>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<bool>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<f32>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<f32>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<f64>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<f64>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<i8>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<i8>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<i16>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<i16>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<i32>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<i32>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<i64>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<i64>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<u8>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<u8>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<u16>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<u16>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<u32>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<u32>> for ArrayData
[src]

Performs the conversion.

impl From<Vec<u64>> for ArrayData
[src]

Performs the conversion.

impl From<Buffer<u64>> for ArrayData
[src]

Performs the conversion.

impl Display for ArrayData
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for ArrayData

impl !Sync for ArrayData