(func: &str)
| 996 | } |
| 997 | |
| 998 | pub fn get_func_gadget(func: &str) -> Option<&'static FuncGadget> { |
| 999 | get_func_gadgets().iter().find(|x| x.name == func) |
| 1000 | } |
| 1001 | |
| 1002 | pub fn dump_func_gadgets_tostr() -> String { |
| 1003 | let gadgets = get_func_gadgets(); |
no test coverage detected