re_view_dataframe/
lib.rs

1//! Rerun `Data` View
2//!
3//! A View that shows the data contained in entities in a table.
4
5mod dataframe_ui;
6
7mod expanded_rows;
8mod view_class;
9mod view_query;
10mod visualizer_system;
11
12pub use view_class::DataframeView;
13
14#[cfg(feature = "testing")]
15pub use view_query::Query;