summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/model/func.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/model/func.rs b/src/model/func.rs
index e47594a1..f04b864e 100644
--- a/src/model/func.rs
+++ b/src/model/func.rs
@@ -217,6 +217,8 @@ pub struct FuncInfo {
pub syntax: Option<&'static str>,
/// Details about the function's parameters.
pub params: Vec<ParamInfo>,
+ /// Valid types for the return value.
+ pub returns: Vec<&'static str>,
}
impl FuncInfo {