athena_rs 3.23.0

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Schema route response-contract types.
//!
//! This module contains response DTOs returned by schema routes.

mod clients;
mod columns;
mod constraints;
mod overview;
mod tables;

pub(super) use clients::SchemaClients;
pub(super) use columns::SchemaColumn;
pub(super) use constraints::SchemaConstraint;
pub(super) use overview::{SchemaOverview, SchemaTableWithColumns};
pub(super) use tables::SchemaTable;