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//!
15//! Additionally this crate defines the [`TableLike`](crate::traits::table_like::TableLike)
16//! trait — a dyn-safe interface for table-shaped backends. Type erasure for
17//! cross-driver work lives at the Vista layer in `vantage-vista`.
18//! A table abstraction defined over a datasource and entity
19
20pub mod base;
21pub use base::*;
22
23pub mod impls;
24pub use impls::*;
25
26pub mod sets;
27pub use sets::*;