1
2
3
4
5
6
7
8
use crate::Value;

#[derive(Debug)]
pub struct Example {
    pub example: &'static str,
    pub description: &'static str,
    pub result: Option<Value>,
}