Trait polars_arrow::types::BitChunk
source · pub trait BitChunk: Sealed + PrimInt + NativeType + Binary + ShlAssign + Not<Output = Self> + ShrAssign<usize> + ShlAssign<usize> + Shl<usize, Output = Self> + BitAndAssign {
// Required methods
fn to_ne_bytes(self) -> Self::Bytes;
fn from_ne_bytes(v: Self::Bytes) -> Self;
}
Expand description
Required Methods§
sourcefn to_ne_bytes(self) -> Self::Bytes
fn to_ne_bytes(self) -> Self::Bytes
convert itself into bytes.
sourcefn from_ne_bytes(v: Self::Bytes) -> Self
fn from_ne_bytes(v: Self::Bytes) -> Self
convert itself from bytes.
Object Safety§
This trait is not object safe.