Given this enum, how do you read the inner value out of a `Msg::Move` variant?enum Msg { Quit, Move { x: i32, y: i32 }, Write(String), } let m = Msg::Move { x: 1, y: 2 };