athena_rs 3.22.1

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Input contracts for `/debug/schema` service-loader orchestration.
//!
//! This module defines typed input payloads consumed by
//! `debug_service_loader`.

use sqlx::{Pool, Postgres};

/// Typed input payload consumed by per-client debug report loader orchestration.
pub(super) struct LoggingSchemaDebugReportForClientLoaderInput {
    /// Resolved logging-client name used for report loading.
    pub(super) logging_client_name: String,
    /// Active Postgres pool resolved for the logging client.
    pub(super) pool: Pool<Postgres>,
}