nu-protocol 0.75.0

Nushell's internal protocols, including its abstract syntax tree
Documentation
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>,
}