re_datafusion/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The Rerun public data APIs. Access `DataFusion` `TableProviders`.

mod dataframe_query_provider;
mod datafusion_connector;
mod grpc_streaming_provider;
mod partition_table;
mod search_provider;
mod table_entry_provider;
mod wasm_compat;

pub use dataframe_query_provider::DataframeQueryTableProvider;
pub use datafusion_connector::DataFusionConnector;
pub use partition_table::PartitionTableProvider;
pub use search_provider::SearchResultsTableProvider;
pub use table_entry_provider::TableEntryTableProvider;