Trait AppControlExt

Source
pub trait AppControlExt<R: Runtime> {
    // Required method
    fn app_control(&self) -> &AppControl<R>;
}
Expand description

Extensions to tauri::App, tauri::AppHandle, tauri::WebviewWindow, tauri::Webview and tauri::Window to access the app control APIs.

Required Methods§

Source

fn app_control(&self) -> &AppControl<R>

Implementors§

Source§

impl<R: Runtime, T: Manager<R>> AppControlExt<R> for T