(emu_handle: Arc<Mutex<EmuHandle>>)
| 15 | emu_handle: Arc<Mutex<EmuHandle>>, |
| 16 | /// Shared keyboard-to-GBA-button bindings, also read by the input handler. |
| 17 | key_bindings: Arc<Mutex<Vec<(GbaButton, Key)>>>, |
| 18 | /// The button currently waiting to capture a new key, if any. |
| 19 | rebinding: Option<GbaButton>, |
| 20 | } |
| 21 | |
| 22 | impl KeypadDebug { |
nothing calls this directly
no outgoing calls
no test coverage detected