polars_arrow::types::simd

Trait FromMaskChunk

Source
pub trait FromMaskChunk<T> {
    // Required method
    fn from_chunk(v: T) -> Self;
}
Expand description

Describes the ability to convert itself from a BitChunk.

Required Methods§

Source

fn from_chunk(v: T) -> Self

Convert itself from a slice.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§