vantage_table/table/mod.rs
1//! Table is our generic implementation of remote record collection, that may have columns and supports
2//! column operations (like sorting or filtering).
3//!
4//! Table<E, S> is defined over E=Entity and S=TableSource
5//!
6//! In practice, it's benificial to use a single struct that implements:
7//! - TableSource (defined in this crate)
8//! - QuerySource (defined in vantage-expressions)
9//! - SelectSource (defined in vantage-expessions)
10//!
11//! Table<_, S: QuerySource> and Table<_, S: SelectSource> will define
12//! additional properties.
13//!
14//! Type erasure for cross-driver work lives at the Vista layer in
15//! `vantage-vista`.
16//! A table abstraction defined over a datasource and entity
17
18pub mod base;
19pub use base::*;
20
21pub mod impls;
22pub use impls::*;
23
24pub mod sets;
25pub use sets::*;