evoc_rs/errors.rs
1//! Errors for the evoc-rs crate.
2
3use thiserror::Error;
4
5/// Errors that can be returned by manifolds-rs
6#[derive(Debug, Error)]
7pub enum EvocErrors {
8 // -- manifolds-rs --
9 /// Propagate errors from the ann-search-rs crate
10 #[error("Error from the ann-search-rs crate: {0}")]
11 AnnSearchRsError(#[from] ann_search_rs::errors::AnnSearchErrors),
12}