Trait tauri_runtime::Params[][src]

pub trait Params: ParamsBase + 'static {
    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

type Event: Tag[src]

Expand description

The event type used to create and listen to events.

type Label: Tag[src]

Expand description

The type used to determine the name of windows.

type MenuId: MenuId[src]

Expand description

The type used to determine window menu ids.

type SystemTrayMenuId: MenuId[src]

Expand description

The type used to determine system tray menu ids.

type Assets: Assets[src]

Expand description

Assets that Tauri should serve from itself.

type Runtime: Runtime[src]

Expand description

The underlying webview runtime used by the Tauri application.

Loading content...

Implementors

Loading content...