Expand description
All the types required by the dataframe API.
Modules§
Structs§
- A vector of trait objects of
Array
where every item has the same length,Chunk::len
. - A ref-counted, inner-mutable handle to a
ChunkStore
. - Select a component based on its
EntityPath
andComponentName
. - The unique identifier of an entity, e.g.
camera/3/points
- A way to filter a set of
EntityPath
s. - A ref-counted, inner-mutable handle to a
QueryCache
. - A handle to our user-facing query engine.
- Describes a complete query for Rerun’s dataframe API.
- A handle to a dataframe query, ready to be executed.
- Keeps track of handles towards a
ChunkStore
and itsQueryCache
. - Select a time column.
- A 64-bit number describing either nanoseconds, sequence numbers or fully static data.
- A time frame/space, e.g.
log_time
orframe_nr
, coupled with the type of time it keeps. - A
Chunk
that is ready for transport. Obtained by callingChunk::to_transport
.
Enums§
- Describes a column selection to return as part of a query.
- Specifies how null values should be filled in the returned dataframe.
- What kind of Store this is.
- How to handle version mismatches during decoding.
Functions§
- Concatenate multiple
TransportChunk
s into one.
Type Aliases§
- The view contents specify which subset of the database (i.e., which columns) the query runs on, expressed as a set of
EntityPath
s and their associatedComponentName
s.