Function tauri_wasm::plugin::global_shortcut::is_registered
source · pub async fn is_registered(shortcut: &str) -> Result<bool>Expand description
Determines whether the given shortcut is registered by this application or not.
§Example
use tauri_sys::global_shortcut::is_registered;
let registered = is_registered("CommandOrControl+P").await?;