brk_bindgen 0.3.0-beta.8

A trait-based generator of client bindings for multiple languages
Documentation
1
2
3
4
5
6
7
8
/// Parameter information.
#[derive(Debug, Clone)]
pub struct Parameter {
    pub name: String,
    pub required: bool,
    pub param_type: String,
    pub description: Option<String>,
}