#[non_exhaustive]pub enum Array {
Show 18 variants
Bool(BooleanArray),
Int8(PrimitiveArray<i8>),
Int16(PrimitiveArray<i16>),
Int32(PrimitiveArray<i32>),
Int64(PrimitiveArray<i64>),
UInt8(PrimitiveArray<u8>),
UInt16(PrimitiveArray<u16>),
UInt32(PrimitiveArray<u32>),
UInt64(PrimitiveArray<u64>),
Float32(PrimitiveArray<f32>),
Float64(PrimitiveArray<f64>),
Decimal(DecimalArray),
Timestamp(TimestampArray),
Utf8(Utf8Array),
Categorical(Utf8Array),
Binary(BinaryArray),
FixedBinary(BinaryArray),
Date32(PrimitiveArray<i32>),
}Expand description
A logical column array. Each variant has exactly one value position per row; nullability is carried by the typed array’s validity bitmap.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Bool(BooleanArray)
Int8(PrimitiveArray<i8>)
Int16(PrimitiveArray<i16>)
Int32(PrimitiveArray<i32>)
Int64(PrimitiveArray<i64>)
UInt8(PrimitiveArray<u8>)
UInt16(PrimitiveArray<u16>)
UInt32(PrimitiveArray<u32>)
UInt64(PrimitiveArray<u64>)
Float32(PrimitiveArray<f32>)
Float64(PrimitiveArray<f64>)
Decimal(DecimalArray)
Timestamp(TimestampArray)
Utf8(Utf8Array)
Categorical(Utf8Array)
Binary(BinaryArray)
FixedBinary(BinaryArray)
Date32(PrimitiveArray<i32>)
Implementations§
Source§impl Array
impl Array
Trait Implementations§
impl StructuralPartialEq for Array
Auto Trait Implementations§
impl Freeze for Array
impl RefUnwindSafe for Array
impl Send for Array
impl Sync for Array
impl Unpin for Array
impl UnsafeUnpin for Array
impl UnwindSafe for Array
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more