mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-09 18:18:14 -07:00
9 lines
187 B
Rust
9 lines
187 B
Rust
/// Parameter information.
|
|
#[derive(Debug, Clone)]
|
|
pub struct Parameter {
|
|
pub name: String,
|
|
pub required: bool,
|
|
pub param_type: String,
|
|
pub description: Option<String>,
|
|
}
|