1 2 3 4 5 6 7 8 9 10
//! OpenAPI specification generation utilities. //! //! This module provides types and functions for converting Rust types //! into OpenAPI 3.0 specification components. mod generator; mod converter; pub use generator::{ParamType, schema_to_fields}; pub use converter::param_type_to_openapi_schema;