pub trait ListViewArraySlotsExt: TypedArrayRef<ListView> {
// Provided methods
fn elements(&self) -> &ArrayRef { ... }
fn offsets(&self) -> &ArrayRef { ... }
fn sizes(&self) -> &ArrayRef { ... }
fn validity(&self) -> Option<&ArrayRef> { ... }
fn slots_view(&self) -> ListViewSlotsView<'_> { ... }
}Expand description
Typed array accessors for ListView.
Provided Methods§
fn elements(&self) -> &ArrayRef
fn offsets(&self) -> &ArrayRef
fn sizes(&self) -> &ArrayRef
fn validity(&self) -> Option<&ArrayRef>
Sourcefn slots_view(&self) -> ListViewSlotsView<'_>
fn slots_view(&self) -> ListViewSlotsView<'_>
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".