nushell/crates/nu-protocol/src/example.rs

9 lines
156 B
Rust
Raw Normal View History

2021-09-02 10:25:22 +02:00
use crate::Value;
#[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
}