Skip to main content

WebviewBundleExtra

Trait WebviewBundleExtra 

Source
pub trait WebviewBundleExtra<R: Runtime> {
    // Required method
    fn webview_bundle(&self) -> &WebviewBundle<R>;

    // Provided method
    fn wvb(&self) -> &WebviewBundle<R> { ... }
}
Expand description

Extensions to tauri::App, tauri::AppHandle and tauri::Window to access the tauri APIs.

Required Methods§

Source

fn webview_bundle(&self) -> &WebviewBundle<R>

Provided Methods§

Source

fn wvb(&self) -> &WebviewBundle<R>

Implementors§

Source§

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