pub trait FuncManager {
    fn get_func(&self, k: &str) -> Option<&TFunc>;
    fn for_each<F: Fn(&String, &str)>(&self, f: F);

    fn print_all(&self) { ... }
    fn print_filter(&self, s: &str) { ... }
}

Required Methods

Provided Methods

Implementors