//! Errors for the evoc-rs crate.
usemanifolds_rs::prelude::ManifoldsError;usethiserror::Error;/// Errors that can be returned by manifolds-rs
#[derive(Debug, Error)]pubenumEvocErrors{// -- manifolds-rs --
/// Propagate errors from the manifolds-rs crate
#[error("Error from the manifolds-rs crate: {0}")]
AnnSearchRsError(#[from] ManifoldsError),}