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§
fn webview_bundle(&self) -> &WebviewBundle<R>
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".