brk_bindgen 0.11.1

A trait-based generator of client bindings for multiple languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde_json::Value;

/// Parameter information.
#[derive(Debug, Clone)]
pub struct Parameter {
    pub name: String,
    pub required: bool,
    pub param_type: String,
    pub description: Option<String>,
    /// Original OpenAPI/JSON Schema for schema-driven generators.
    pub schema: Value,
}