Modules§
- chain π
- compacted_
row π - empty π
- once π
- ordered π
- owned_
row π - project π
- repeat_
n π - slice π
Macros§
- deref_
forward_ πrow Forward the implementation ofRow
to the deref target. - impl_
slice_ πrow ImplementsRow
for a slice of datums.
Structs§
- An array-backed, vector-like data structure.
- Row for the
chain
method. CompactedRow
is used in streaming executorsβ cache, which takes less memory thanVec<Datum>
. Executors need to serialize Row intoCompactedRow
before writing into cache.- Row for the
empty
function. - Row for the
once
function. - An owned row type with a
Vec<Datum>
. - Row for the
project
method. - Row for the
repeat_n
function. - Deserializer of the
OwnedRow
. - Row for the
slice
method.
Traits§
- The trait for abstracting over a Row-like type.
- An extension trait for
Row
s that provides a variety of convenient adapters.
Functions§
- assert_
row π - Creates a row which contains no datums.
- Create a row which contains
n
repetitions ofdatum
.