Struct polars::prelude::datatypes::BinaryType   
source · pub struct BinaryType {}Trait Implementations§
source§impl ChunkExpandAtIndex<BinaryType> for ChunkedArray<BinaryType>
 
impl ChunkExpandAtIndex<BinaryType> for ChunkedArray<BinaryType>
source§fn new_from_index(
    &self,
    index: usize,
    length: usize
) -> ChunkedArray<BinaryType>
 
fn new_from_index( &self, index: usize, length: usize ) -> ChunkedArray<BinaryType>
Create a new ChunkedArray filled with values at that index.
source§impl ChunkFilter<BinaryType> for ChunkedArray<BinaryType>
 
impl ChunkFilter<BinaryType> for ChunkedArray<BinaryType>
source§fn filter(
    &self,
    filter: &ChunkedArray<BooleanType>
) -> Result<ChunkedArray<BinaryType>, PolarsError>
 
fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<BinaryType>, PolarsError>
Filter values in the ChunkedArray with a boolean mask. Read more
source§impl ChunkShift<BinaryType> for ChunkedArray<BinaryType>
 
impl ChunkShift<BinaryType> for ChunkedArray<BinaryType>
fn shift(&self, periods: i64) -> ChunkedArray<BinaryType>
source§impl ChunkShiftFill<BinaryType, Option<&[u8]>> for ChunkedArray<BinaryType>
 
impl ChunkShiftFill<BinaryType, Option<&[u8]>> for ChunkedArray<BinaryType>
source§fn shift_and_fill(
    &self,
    periods: i64,
    fill_value: Option<&[u8]>
) -> ChunkedArray<BinaryType>
 
fn shift_and_fill( &self, periods: i64, fill_value: Option<&[u8]> ) -> ChunkedArray<BinaryType>
Shift the values by a given period and fill the parts that will be empty due to this operation
with 
fill_value.source§impl ChunkSort<BinaryType> for ChunkedArray<BinaryType>
 
impl ChunkSort<BinaryType> for ChunkedArray<BinaryType>
fn sort_with(&self, options: SortOptions) -> ChunkedArray<BinaryType>
source§fn sort(&self, descending: bool) -> ChunkedArray<BinaryType>
 
fn sort(&self, descending: bool) -> ChunkedArray<BinaryType>
Returned a sorted 
ChunkedArray.source§fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>
 
fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>
Retrieve the indexes needed to sort this array.
source§fn arg_sort_multiple(
    &self,
    by: &[Series],
    options: &SortMultipleOptions
) -> Result<ChunkedArray<UInt32Type>, PolarsError>
 
fn arg_sort_multiple( &self, by: &[Series], options: &SortMultipleOptions ) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Retrieve the indexes need to sort this and the other arrays.
source§impl Clone for BinaryType
 
impl Clone for BinaryType
source§fn clone(&self) -> BinaryType
 
fn clone(&self) -> BinaryType
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 moresource§impl<B> NewChunkedArray<BinaryType, B> for ChunkedArray<BinaryType>
 
impl<B> NewChunkedArray<BinaryType, B> for ChunkedArray<BinaryType>
source§fn from_iter_values(
    name: &str,
    it: impl Iterator<Item = B>
) -> ChunkedArray<BinaryType>
 
fn from_iter_values( name: &str, it: impl Iterator<Item = B> ) -> ChunkedArray<BinaryType>
Create a new ChunkedArray from an iterator.
fn from_slice(name: &str, v: &[B]) -> ChunkedArray<BinaryType>
fn from_slice_options( name: &str, opt_v: &[Option<B>] ) -> ChunkedArray<BinaryType>
source§fn from_iter_options(
    name: &str,
    it: impl Iterator<Item = Option<B>>
) -> ChunkedArray<BinaryType>
 
fn from_iter_options( name: &str, it: impl Iterator<Item = Option<B>> ) -> ChunkedArray<BinaryType>
Create a new ChunkedArray from an iterator.
source§impl NumOpsDispatchInner for BinaryType
 
impl NumOpsDispatchInner for BinaryType
fn add_to( lhs: &ChunkedArray<BinaryType>, rhs: &Series ) -> Result<Series, PolarsError>
fn subtract( lhs: &ChunkedArray<Self>, rhs: &Series ) -> Result<Series, PolarsError>
fn multiply( lhs: &ChunkedArray<Self>, rhs: &Series ) -> Result<Series, PolarsError>
fn divide(lhs: &ChunkedArray<Self>, rhs: &Series) -> Result<Series, PolarsError>
fn remainder( lhs: &ChunkedArray<Self>, rhs: &Series ) -> Result<Series, PolarsError>
source§impl PolarsDataType for BinaryType
 
impl PolarsDataType for BinaryType
impl Copy for BinaryType
Auto Trait Implementations§
impl Freeze for BinaryType
impl RefUnwindSafe for BinaryType
impl Send for BinaryType
impl Sync for BinaryType
impl Unpin for BinaryType
impl UnwindSafe for BinaryType
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