(&self)
| 99 | |
| 100 | impl Command for Memory { |
| 101 | fn run(&self) -> CliResult<()> { |
| 102 | match &self.command { |
| 103 | MemoryCommands::List(cmd) => cmd.run(), |
| 104 | MemoryCommands::Show(cmd) => cmd.run(), |
| 105 | MemoryCommands::Write(cmd) => cmd.run(), |
| 106 | } |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | // MemoryList Command |
nothing calls this directly
no test coverage detected