pub enum PropColumn {
Show 16 variants
Empty(usize),
Bool(LazyVec<bool>),
U8(LazyVec<u8>),
U16(LazyVec<u16>),
U32(LazyVec<u32>),
U64(LazyVec<u64>),
I32(LazyVec<i32>),
I64(LazyVec<i64>),
F32(LazyVec<f32>),
F64(LazyVec<f64>),
Str(StringCol),
List(LazyVec<PropArray>),
Map(LazyVec<Arc<FxHashMap<ArcStr, Prop>>>),
NDTime(LazyVec<NaiveDateTime>),
DTime(LazyVec<DateTime<Utc>>),
Decimal(LazyVec<BigDecimal>),
}Variants§
Empty(usize)
Bool(LazyVec<bool>)
U8(LazyVec<u8>)
U16(LazyVec<u16>)
U32(LazyVec<u32>)
U64(LazyVec<u64>)
I32(LazyVec<i32>)
I64(LazyVec<i64>)
F32(LazyVec<f32>)
F64(LazyVec<f64>)
Str(StringCol)
List(LazyVec<PropArray>)
Map(LazyVec<Arc<FxHashMap<ArcStr, Prop>>>)
NDTime(LazyVec<NaiveDateTime>)
DTime(LazyVec<DateTime<Utc>>)
Decimal(LazyVec<BigDecimal>)
Implementations§
Source§impl PropColumn
impl PropColumn
pub fn upsert( &mut self, index: usize, prop: PropRef<'_>, ) -> Result<(), TPropColumnError>
pub fn check( &self, index: usize, prop: &PropRef<'_>, ) -> Result<(), TPropColumnError>
pub fn is_empty(&self) -> bool
pub fn get(&self, index: usize) -> Option<Prop>
pub fn get_ref(&self, index: usize) -> Option<PropRef<'_>>
Trait Implementations§
Source§impl Debug for PropColumn
impl Debug for PropColumn
Auto Trait Implementations§
impl !RefUnwindSafe for PropColumn
impl !UnwindSafe for PropColumn
impl Freeze for PropColumn
impl Send for PropColumn
impl Sync for PropColumn
impl Unpin for PropColumn
impl UnsafeUnpin for PropColumn
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