(&self)
| 66 | } |
| 67 | |
| 68 | pub(crate) fn action(&self) -> &String { |
| 69 | if let Command::Move { action, .. } = self { |
| 70 | action |
| 71 | } else { |
| 72 | unreachable!() |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | pub(crate) fn back(&self) -> Command { |
| 77 | if let Command::Move { |
nothing calls this directly
no outgoing calls
no test coverage detected