re_dataframe/
lib.rs

1//! The Rerun public data APIs. Get dataframes back from your Rerun datastore.
2
3mod engine;
4mod query;
5
6pub use self::engine::QueryEngine;
7pub use self::query::QueryHandle;
8
9#[doc(no_inline)]
10pub use self::external::re_chunk_store::{
11    ChunkStoreConfig, ChunkStoreHandle, Index, IndexRange, IndexValue, QueryExpression,
12    SparseFillStrategy, ViewContentsSelector,
13};
14#[doc(no_inline)]
15pub use self::external::re_log_types::{
16    AbsoluteTimeRange, EntityPath, EntityPathFilter, EntityPathSubs, ResolvedEntityPathFilter,
17    StoreKind, TimeCell, TimeInt, Timeline, TimelineName,
18};
19#[doc(no_inline)]
20pub use self::external::re_query::{QueryCache, QueryCacheHandle, StorageEngine};
21
22#[doc(no_inline)]
23pub use self::external::re_types_core::{ComponentDescriptor, ComponentType};
24
25pub mod external {
26    pub use re_chunk;
27    pub use re_chunk_store;
28    pub use re_log_types;
29    pub use re_query;
30    pub use re_types_core;
31
32    pub use arrow;
33}