2021-09-02 08:25:22 +00:00
|
|
|
use crate::Value;
|
|
|
|
|
2022-01-26 14:42:39 +00:00
|
|
|
#[derive(Debug)]
|
2021-09-02 08:25:22 +00:00
|
|
|
pub struct Example {
|
|
|
|
pub example: &'static str,
|
|
|
|
pub description: &'static str,
|
2021-10-09 13:10:10 +00:00
|
|
|
pub result: Option<Value>,
|
2021-09-02 08:25:22 +00:00
|
|
|
}
|