(&self, binary_view: &BinaryView)
| 11 | |
| 12 | impl Command for PrintMemoryInformationCommand { |
| 13 | fn action(&self, binary_view: &BinaryView) { |
| 14 | command::print_memory_information(binary_view); |
| 15 | } |
| 16 | |
| 17 | fn valid(&self, _binary_view: &BinaryView) -> bool { |
| 18 | true // TODO: Of course, the command will not always be valid! |
nothing calls this directly
no test coverage detected