Skip to main content

KeyringExt

Trait KeyringExt 

Source
pub trait KeyringExt<R: Runtime> {
    // Required method
    fn keyring(&self) -> &KeyringPlugin;
}
Expand description

Access managed KeyringPlugin state from tauri::App, tauri::AppHandle, or tauri::WebviewWindow.

Registered by init or Builder::build.

Required Methods§

Source

fn keyring(&self) -> &KeyringPlugin

Returns the shared plugin state (store + session registry).

Implementors§

Source§

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