Trait tauri::Params[][src]

pub trait Params: 'static + ParamsBase {
    type Event: Tag;
    type Label: Tag;
    type MenuId: MenuId;
    type SystemTrayMenuId: MenuId;
    type Assets: Assets;
    type Runtime: Runtime;
}
Expand description

Types associated with the running Tauri application.

Associated Types

The event type used to create and listen to events.

The type used to determine the name of windows.

The type used to determine window menu ids.

The type used to determine system tray menu ids.

Assets that Tauri should serve from itself.

The underlying webview runtime used by the Tauri application.

Implementors