pub trait StructArraySlotsExt: TypedArrayRef<Struct> {
// Provided methods
fn validity(&self) -> Option<&ArrayRef> { ... }
fn fields(&self) -> SlotSlice<'_> { ... }
fn slots_view(&self) -> StructSlotsView<'_> { ... }
}Expand description
Typed array accessors for Struct.
Provided Methods§
fn validity(&self) -> Option<&ArrayRef>
fn fields(&self) -> SlotSlice<'_>
Sourcefn slots_view(&self) -> StructSlotsView<'_>
fn slots_view(&self) -> StructSlotsView<'_>
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".