pub trait ValidityChildSliceHelper {
// Required method
fn unsliced_child_and_slice(&self) -> (&ArrayRef, usize, usize);
// Provided method
fn sliced_child_array(&self) -> VortexResult<ArrayRef> { ... }
}Required Methods§
fn unsliced_child_and_slice(&self) -> (&ArrayRef, usize, usize)
Provided Methods§
fn sliced_child_array(&self) -> VortexResult<ArrayRef>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".