Skip to main content

FSSTArraySlotsExt

Trait FSSTArraySlotsExt 

Source
pub trait FSSTArraySlotsExt: TypedArrayRef<FSST> {
    // Provided methods
    fn uncompressed_lengths(&self) -> &ArrayRef { ... }
    fn codes_offsets(&self) -> &ArrayRef { ... }
    fn codes_validity(&self) -> Option<&ArrayRef> { ... }
    fn slots_view(&self) -> FSSTSlotsView<'_> { ... }
}
Expand description

Typed array accessors for FSST.

Provided Methods§

Source

fn uncompressed_lengths(&self) -> &ArrayRef

Source

fn codes_offsets(&self) -> &ArrayRef

Source

fn codes_validity(&self) -> Option<&ArrayRef>

Source

fn slots_view(&self) -> FSSTSlotsView<'_>

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".

Implementors§