vantage-api-client 0.1.4

Vantage extension for REST API backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! YAML-facing types for the REST-API Vista driver.
//!
//! REST APIs carry no driver-specific blocks for now, so all three
//! extension types use `NoExtras`. Kept as separate typedefs so we can
//! grow a per-table/per-column block later (e.g. response-shape
//! overrides) without breaking callers.

use vantage_vista::{NoExtras, VistaSpec};

pub type NoApiExtras = NoExtras;
pub type RestApiVistaSpec = VistaSpec<NoApiExtras, NoApiExtras, NoApiExtras>;