runmat-builtins 0.6.2

RunMat built-in functions and standard library components
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::Serialize;

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
pub struct BuiltinDocumentation {
    pub summary: &'static str,
    pub keywords: &'static [&'static str],
    pub related: &'static [&'static str],
    pub introduced: Option<&'static str>,
    pub status: Option<&'static str>,
    pub examples: &'static [&'static str],
}