diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-05-17 14:39:47 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-05-17 14:39:47 +0200 |
| commit | 46aace78ac4ac1c075b9b1670dbb7372df1a0a82 (patch) | |
| tree | e093f81284ffc6a5150a18bdd338da75c368120c /src/eval | |
| parent | 42afa410ae561eb5b267080d088bca529a5d0b54 (diff) | |
Search keywords
Diffstat (limited to 'src/eval')
| -rw-r--r-- | src/eval/func.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/eval/func.rs b/src/eval/func.rs index a8afa36d..75231fc9 100644 --- a/src/eval/func.rs +++ b/src/eval/func.rs @@ -249,6 +249,8 @@ pub struct FuncInfo { pub name: &'static str, /// The display name of the function. pub display: &'static str, + /// A string of keywords. + pub keywords: Option<&'static str>, /// Documentation for the function. pub docs: &'static str, /// Details about the function's parameters. |
