athena_rs 3.22.1

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Normalized `/schema/columns` request-parameter contracts.
//!
//! This module contains validated query DTOs passed from normalization into
//! query-path loaders and response orchestrators.

/// Validated query parameters for `/schema/columns`.
pub(in super::super) struct NormalizedColumnQuery {
    /// Required table name.
    pub(in super::super) table_name: String,
    /// Optional schema filter.
    pub(in super::super) table_schema: Option<String>,
}