this has meant changing the type signature of forward() so that it accepts the rover by reference not value, and making Facing a Copy type so that the direction passed to forward can also be returned in its output
note we have to pass a reference to "facing" not the tuple itself, otherwise it owns it and we get "value used here after move"