pub trait NotificationsExt<R: Runtime> {
// Required method
fn notifications(&self) -> &Notifications<R>;
}Expand description
Extensions to tauri::App, tauri::AppHandle, tauri::WebviewWindow, tauri::Webview and tauri::Window to access the notification APIs.
Required Methods§
fn notifications(&self) -> &Notifications<R>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".