re_dataframe 0.32.0-rc.1

High-level query APIs
Documentation
//! The Rerun public data APIs. Get dataframes back from your Rerun datastore.

mod engine;
mod query;
pub mod utils;

pub use self::engine::QueryEngine;
#[doc(no_inline)]
pub use self::external::re_chunk_store::{
    ChunkStoreConfig, ChunkStoreHandle, Index, IndexRange, IndexValue, QueryExpression,
    SparseFillStrategy, ViewContentsSelector,
};
#[doc(no_inline)]
pub use self::external::re_log_types::{
    AbsoluteTimeRange, EntityPath, EntityPathFilter, EntityPathSubs, ResolvedEntityPathFilter,
    StoreKind, TimeCell, TimeInt, Timeline, TimelineName,
};
#[doc(no_inline)]
pub use self::external::re_query::{QueryCache, QueryCacheHandle, StorageEngine};
#[doc(no_inline)]
pub use self::external::re_types_core::{ComponentDescriptor, ComponentType};
pub use self::query::{NextNRowsOutput, QueryHandle};

pub mod external {
    pub use {arrow, re_chunk, re_chunk_store, re_log_types, re_query, re_types_core};
}