pub enum AnyValueBuffer<'a> {
Show 18 variants
Boolean(BooleanChunkedBuilder),
Int8(PrimitiveChunkedBuilder<Int8Type>),
Int16(PrimitiveChunkedBuilder<Int16Type>),
Int32(PrimitiveChunkedBuilder<Int32Type>),
Int64(PrimitiveChunkedBuilder<Int64Type>),
UInt8(PrimitiveChunkedBuilder<UInt8Type>),
UInt16(PrimitiveChunkedBuilder<UInt16Type>),
UInt32(PrimitiveChunkedBuilder<UInt32Type>),
UInt64(PrimitiveChunkedBuilder<UInt64Type>),
Date(PrimitiveChunkedBuilder<Int32Type>),
Datetime(PrimitiveChunkedBuilder<Int64Type>, TimeUnit, Option<PlSmallStr>),
Duration(PrimitiveChunkedBuilder<Int64Type>, TimeUnit),
Time(PrimitiveChunkedBuilder<Int64Type>),
Float32(PrimitiveChunkedBuilder<Float32Type>),
Float64(PrimitiveChunkedBuilder<Float64Type>),
String(BinViewChunkedBuilder<str>),
Null(NullChunkedBuilder),
All(DataType, Vec<AnyValue<'a>>),
}
Available on crate features
rows
or object
only.Variants§
Boolean(BooleanChunkedBuilder)
Int8(PrimitiveChunkedBuilder<Int8Type>)
Available on crate feature
dtype-i8
only.Int16(PrimitiveChunkedBuilder<Int16Type>)
Available on crate feature
dtype-i16
only.Int32(PrimitiveChunkedBuilder<Int32Type>)
Int64(PrimitiveChunkedBuilder<Int64Type>)
UInt8(PrimitiveChunkedBuilder<UInt8Type>)
Available on crate feature
dtype-u8
only.UInt16(PrimitiveChunkedBuilder<UInt16Type>)
Available on crate feature
dtype-u16
only.UInt32(PrimitiveChunkedBuilder<UInt32Type>)
UInt64(PrimitiveChunkedBuilder<UInt64Type>)
Date(PrimitiveChunkedBuilder<Int32Type>)
Available on crate feature
dtype-date
only.Datetime(PrimitiveChunkedBuilder<Int64Type>, TimeUnit, Option<PlSmallStr>)
Available on crate feature
dtype-datetime
only.Duration(PrimitiveChunkedBuilder<Int64Type>, TimeUnit)
Available on crate feature
dtype-duration
only.Time(PrimitiveChunkedBuilder<Int64Type>)
Available on crate feature
dtype-time
only.Float32(PrimitiveChunkedBuilder<Float32Type>)
Float64(PrimitiveChunkedBuilder<Float64Type>)
String(BinViewChunkedBuilder<str>)
Null(NullChunkedBuilder)
All(DataType, Vec<AnyValue<'a>>)
Implementations§
Trait Implementations§
Source§impl<'a> Clone for AnyValueBuffer<'a>
impl<'a> Clone for AnyValueBuffer<'a>
Source§fn clone(&self) -> AnyValueBuffer<'a>
fn clone(&self) -> AnyValueBuffer<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for AnyValueBuffer<'a>
impl<'a> !RefUnwindSafe for AnyValueBuffer<'a>
impl<'a> Send for AnyValueBuffer<'a>
impl<'a> Sync for AnyValueBuffer<'a>
impl<'a> Unpin for AnyValueBuffer<'a>
impl<'a> !UnwindSafe for AnyValueBuffer<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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