pub trait VelesDbExt<R: Runtime> {
// Required method
fn velesdb(&self) -> Option<SimpleIndexHandle>;
}Expand description
Extension trait for easy access to VelesDB from Tauri AppHandle.
Required Methods§
Sourcefn velesdb(&self) -> Option<SimpleIndexHandle>
fn velesdb(&self) -> Option<SimpleIndexHandle>
Returns a handle to the simple vector index, or None if not initialized.
Returns None when init() has not been called before this method.