pub trait Library: Sync + Send {
// Required methods
fn scope(&self) -> String;
fn call(
&self,
pid: &str,
doc: &mut SDoc,
name: &str,
parameters: &mut Vec<SVal>,
) -> Result<SVal, SError>;
}
Expand description
Stof library.