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>, }