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