athena_rs 3.26.2

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Client-list response contracts.
//!
//! This module contains payload contracts returned by the schema clients endpoint.

use serde::Serialize;

/// Payload returned by `/schema/clients` and `/clients`.
#[derive(Serialize)]
pub(in super::super) struct SchemaClients {
    /// Registered client names from the runtime Postgres registry.
    pub(in super::super) clients: Vec<String>,
}