semtree-store 0.2.1

Vector store trait and backends (usearch)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use thiserror::Error;

#[derive(Debug, Error)]
pub enum StoreError {
    #[error("store init failed: {0}")]
    Init(String),
    #[error("insert failed: {0}")]
    Insert(String),
    #[error("search failed: {0}")]
    Search(String),
    #[error("http error: {0}")]
    Http(String),
}