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;
7#[doc(no_inline)]
8pub use self::external::re_chunk_store::{
9    ChunkStoreConfig, ChunkStoreHandle, Index, IndexRange, IndexValue, QueryExpression,
10    SparseFillStrategy, ViewContentsSelector,
11};
12#[doc(no_inline)]
13pub use self::external::re_log_types::{
14    AbsoluteTimeRange, EntityPath, EntityPathFilter, EntityPathSubs, ResolvedEntityPathFilter,
15    StoreKind, TimeCell, TimeInt, Timeline, TimelineName,
16};
17#[doc(no_inline)]
18pub use self::external::re_query::{QueryCache, QueryCacheHandle, StorageEngine};
19#[doc(no_inline)]
20pub use self::external::re_types_core::{ComponentDescriptor, ComponentType};
21pub use self::query::QueryHandle;
22
23pub mod external {
24    pub use {arrow, re_chunk, re_chunk_store, re_log_types, re_query, re_types_core};
25}