MCPcopy Create free account
hub / github.com/Doctave/dossier / Function

Class Function

dossier-ts/src/function.rs:30–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29#[derive(Debug, Clone, PartialEq)]
30pub(crate) struct Function {
31 pub identifier: String,
32 pub documentation: Option<String>,
33 pub is_exported: bool,
34 pub children: Vec<Symbol>,
35}
36
37impl Function {
38 pub fn as_entity(

Calls

no outgoing calls