Enum polars::frame::row::AnyValueBuffer   
source · 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<String>),
    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<String>)
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> 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