The trait required for function-associated commands. See [register_command_for_function] for example usage.
| 355 | |
| 356 | /// The trait required for function-associated commands. See [register_command_for_function] for example usage. |
| 357 | pub trait FunctionCommand: 'static + Sync { |
| 358 | fn action(&self, view: &BinaryView, func: &Function); |
| 359 | fn valid(&self, view: &BinaryView, func: &Function) -> bool; |
| 360 | } |
| 361 | |
| 362 | impl<T> FunctionCommand for T |
| 363 | where |
nothing calls this directly
no outgoing calls
no test coverage detected