Changing it from `&self` (reference to thing w...
# development
a
Changing it from
&self
(reference to thing which must exist) to
self
(single owned reference of thing, which I can continue to own, move around on the stack, and guarantee exists when the closure runs) fixes the problem, but means that that
CommandRunner
can’t be used by anyone else after that call