//! Client-list response contracts.
//!//! This module contains payload contracts returned by the schema clients endpoint.
useserde::Serialize;/// Payload returned by `/schema/clients` and `/clients`.
#[derive(Serialize)]pub(insuper::super)structSchemaClients{/// Registered client names from the runtime Postgres registry.
pub(in super::super) clients:Vec<String>,
}