Modules§
- chain π
- compacted_
row π - empty π
- once π
- ordered π
- owned_
row π - project π
- repeat_
n π - slice π
Macros§
- deref_
forward_ πrow - Forward the implementation of
Row
to the deref target. - impl_
slice_ πrow - Implements
Row
for a slice of datums.
Structs§
- Array
Vec - An array-backed, vector-like data structure.
- Chain
- Row for the
chain
method. - Compacted
Row CompactedRow
is used in streaming executorsβ cache, which takes less memory thanVec<Datum>
. Executors need to serialize Row intoCompactedRow
before writing into cache.- Empty
- Row for the
empty
function. - Once
- Row for the
once
function. - Owned
Row - An owned row type with a
Vec<Datum>
. - Project
- Row for the
project
method. - RepeatN
- Row for the
repeat_n
function. - RowDeserializer
- Deserializer of the
OwnedRow
. - Slice
- Row for the
slice
method.
Traits§
- Row
- The trait for abstracting over a Row-like type.
- RowExt
- An extension trait for
Row
s that provides a variety of convenient adapters.