evoc-rs 0.2.0

Rust port of the EVoC clustering algorithm for high dimensional data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Errors for the evoc-rs crate.

use manifolds_rs::prelude::ManifoldsError;
use thiserror::Error;

/// Errors that can be returned by manifolds-rs
#[derive(Debug, Error)]
pub enum EvocErrors {
    // -- manifolds-rs --
    /// Propagate errors from the manifolds-rs crate
    #[error("Error from the manifolds-rs crate: {0}")]
    AnnSearchRsError(#[from] ManifoldsError),
}