tauri_store

Trait ManagerExt

Source
pub trait ManagerExt<R: Runtime>: Manager<R> {
    // Provided method
    fn store_collection(&self) -> Arc<StoreCollection<R>> { ... }
}

Provided Methods§

Source

fn store_collection(&self) -> Arc<StoreCollection<R>>

Returns a handle to the store collection.

§Panics

Panics if the store collection is not in the resources table.

This likely indicates that the method was called before the plugin was properly initialized.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<R: Runtime> ManagerExt<R> for AppHandle<R>

Source§

impl<R: Runtime> ManagerExt<R> for WebviewWindow<R>

Source§

impl<R: Runtime> ManagerExt<R> for Window<R>

Implementors§