pub enum TakeIdx<'a, I, INulls>where
    I: TakeIterator,
    INulls: TakeIteratorNulls,{
    Array(&'a IdxArr),
    Iter(I),
    IterNulls(INulls),
}
Expand description

One of the three arguments allowed in unchecked_take

Variants§

§

Array(&'a IdxArr)

§

Iter(I)

§

IterNulls(INulls)

Trait Implementations§

source§

impl<'a> From<&'a [u32]> for TakeIdx<'a, Map<Iter<'a, IdxSize>, fn(_: &IdxSize) -> usize>, Dummy<Option<usize>>>

Conversion from &[IdxSize] to Unchecked TakeIdx

source§

fn from(slice: &'a [IdxSize]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

source§

fn from(ca: &'a IdxCa) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, IdxSize>, fn(_: &IdxSize) -> usize>, Dummy<Option<usize>>>

Conversion from &[IdxSize] to Unchecked TakeIdx

source§

fn from(slice: &'a Vec<IdxSize>) -> Self

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, Dummy<usize>, I>where I: TakeIteratorNulls,

Conversion from [Iterator<Item=Option<usize>>] to Unchecked TakeIdx

source§

fn from(iter: I) -> Self

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, I, Dummy<Option<usize>>>where I: TakeIterator,

Conversion from Iterator<Item=usize> to Unchecked TakeIdx

source§

fn from(iter: I) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls>where I: RefUnwindSafe, INulls: RefUnwindSafe,

§

impl<'a, I, INulls> Send for TakeIdx<'a, I, INulls>where I: Send, INulls: Send,

§

impl<'a, I, INulls> Sync for TakeIdx<'a, I, INulls>where I: Sync, INulls: Sync,

§

impl<'a, I, INulls> Unpin for TakeIdx<'a, I, INulls>where I: Unpin, INulls: Unpin,

§

impl<'a, I, INulls> UnwindSafe for TakeIdx<'a, I, INulls>where I: UnwindSafe, INulls: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V