pub trait DefinitionLibrary {
    // Required method
    fn similar_function(&self, search: &str, args: Option<usize>) -> Vec<&str>;
}
Expand description

Helper functions for Defines

Required Methods§

source

fn similar_function(&self, search: &str, args: Option<usize>) -> Vec<&str>

Find similar functions with a certain number of args

Args can be Some(1) to only find macros that take 1 argument or None to check any number of arguments

Implementors§