Enum polars_core::frame::row::AnyValueBuffer
source · pub enum AnyValueBuffer<'a> {
Boolean(BooleanChunkedBuilder),
Int32(PrimitiveChunkedBuilder<Int32Type>),
Int64(PrimitiveChunkedBuilder<Int64Type>),
UInt32(PrimitiveChunkedBuilder<UInt32Type>),
UInt64(PrimitiveChunkedBuilder<UInt64Type>),
Float32(PrimitiveChunkedBuilder<Float32Type>),
Float64(PrimitiveChunkedBuilder<Float64Type>),
String(StringChunkedBuilder),
Null(NullChunkedBuilder),
All(DataType, Vec<AnyValue<'a>>),
}
Available on crate feature
rows
only.Variants§
Boolean(BooleanChunkedBuilder)
Int32(PrimitiveChunkedBuilder<Int32Type>)
Int64(PrimitiveChunkedBuilder<Int64Type>)
UInt32(PrimitiveChunkedBuilder<UInt32Type>)
UInt64(PrimitiveChunkedBuilder<UInt64Type>)
Float32(PrimitiveChunkedBuilder<Float32Type>)
Float64(PrimitiveChunkedBuilder<Float64Type>)
String(StringChunkedBuilder)
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> !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