pub enum Builder {
Show 24 variants
Boolean(BooleanChunkedBuilder),
Int8(PrimitiveChunkedBuilder<Int8Type>),
Int16(PrimitiveChunkedBuilder<Int16Type>),
Int32(PrimitiveChunkedBuilder<Int32Type>),
Int64(PrimitiveChunkedBuilder<Int64Type>),
Int128(PrimitiveChunkedBuilder<Int128Type>),
UInt8(PrimitiveChunkedBuilder<UInt8Type>),
UInt16(PrimitiveChunkedBuilder<UInt16Type>),
UInt32(PrimitiveChunkedBuilder<UInt32Type>),
UInt64(PrimitiveChunkedBuilder<UInt64Type>),
UInt128(PrimitiveChunkedBuilder<UInt128Type>),
Float16(PrimitiveChunkedBuilder<Float16Type>),
Float32(PrimitiveChunkedBuilder<Float32Type>),
Float64(PrimitiveChunkedBuilder<Float64Type>),
Decimal(DecimalField),
Utf8(Utf8Field),
Datetime {
buf: DatetimeField<Int64Type>,
time_unit: TimeUnit,
time_zone: Option<TimeZone>,
},
Date(DatetimeField<Int32Type>),
Categorical8(CategoricalField<Categorical8Type>),
Categorical16(CategoricalField<Categorical16Type>),
Categorical32(CategoricalField<Categorical32Type>),
DecimalFloat16(PrimitiveChunkedBuilder<Float16Type>, Vec<u8>),
DecimalFloat32(PrimitiveChunkedBuilder<Float32Type>, Vec<u8>),
DecimalFloat64(PrimitiveChunkedBuilder<Float64Type>, Vec<u8>),
}Variants§
Boolean(BooleanChunkedBuilder)
Int8(PrimitiveChunkedBuilder<Int8Type>)
Int16(PrimitiveChunkedBuilder<Int16Type>)
Int32(PrimitiveChunkedBuilder<Int32Type>)
Int64(PrimitiveChunkedBuilder<Int64Type>)
Int128(PrimitiveChunkedBuilder<Int128Type>)
UInt8(PrimitiveChunkedBuilder<UInt8Type>)
UInt16(PrimitiveChunkedBuilder<UInt16Type>)
UInt32(PrimitiveChunkedBuilder<UInt32Type>)
UInt64(PrimitiveChunkedBuilder<UInt64Type>)
UInt128(PrimitiveChunkedBuilder<UInt128Type>)
Float16(PrimitiveChunkedBuilder<Float16Type>)
Float32(PrimitiveChunkedBuilder<Float32Type>)
Float64(PrimitiveChunkedBuilder<Float64Type>)
Decimal(DecimalField)
Utf8(Utf8Field)
Stores the Utf8 fields and the total string length seen for that column
Datetime
Date(DatetimeField<Int32Type>)
Categorical8(CategoricalField<Categorical8Type>)
Categorical16(CategoricalField<Categorical16Type>)
Categorical32(CategoricalField<Categorical32Type>)
DecimalFloat16(PrimitiveChunkedBuilder<Float16Type>, Vec<u8>)
DecimalFloat32(PrimitiveChunkedBuilder<Float32Type>, Vec<u8>)
DecimalFloat64(PrimitiveChunkedBuilder<Float64Type>, Vec<u8>)
Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Builder
impl !UnwindSafe for Builder
impl Freeze for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnsafeUnpin for Builder
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more