pub trait BoolArraySlotsExt: TypedArrayRef<Bool> {
// Provided methods
fn validity(&self) -> Option<&ArrayRef> { ... }
fn slots_view(&self) -> BoolSlotsView<'_> { ... }
}Expand description
Typed array accessors for Bool.
Provided Methods§
fn validity(&self) -> Option<&ArrayRef>
Sourcefn slots_view(&self) -> BoolSlotsView<'_>
fn slots_view(&self) -> BoolSlotsView<'_>
Returns a borrowed view of all slots.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".