Trait FunctionSet

Source
pub trait FunctionSet: Send + Sync {
    // Required method
    fn get(&self, name: &str) -> Option<Arc<dyn Function>>;
}

Required Methods§

Source

fn get(&self, name: &str) -> Option<Arc<dyn Function>>

Implementations on Foreign Types§

Source§

impl FunctionSet for HashMap<String, Arc<dyn Function>>

Source§

fn get(&self, name: &str) -> Option<Arc<dyn Function>>

Implementors§