pub struct ValidityVTableFromChild;
Expand description
An implementation of the ValidityVTable
for arrays that delegate validity entirely
to a child array.
Trait Implementations§
Source§impl<V> ValidityVTable<V> for ValidityVTableFromChildwhere
V: ValidityChild<V> + VTable,
impl<V> ValidityVTable<V> for ValidityVTableFromChildwhere
V: ValidityChild<V> + VTable,
fn is_valid(array: &V::Array, index: usize) -> VortexResult<bool>
fn all_valid(array: &V::Array) -> VortexResult<bool>
fn all_invalid(array: &V::Array) -> VortexResult<bool>
fn validity_mask(array: &V::Array) -> VortexResult<Mask>
Source§fn valid_count(array: &V::Array) -> VortexResult<usize>
fn valid_count(array: &V::Array) -> VortexResult<usize>
Returns the number of valid elements in the array. Read more
Source§fn invalid_count(array: &V::Array) -> VortexResult<usize>
fn invalid_count(array: &V::Array) -> VortexResult<usize>
Returns the number of invalid elements in the array. Read more
Auto Trait Implementations§
impl Freeze for ValidityVTableFromChild
impl RefUnwindSafe for ValidityVTableFromChild
impl Send for ValidityVTableFromChild
impl Sync for ValidityVTableFromChild
impl Unpin for ValidityVTableFromChild
impl UnwindSafe for ValidityVTableFromChild
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