essentia-core 0.1.5

Core Rust library wrapping Essentia functionality
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error;

#[derive(Debug, Error)]
pub enum CreateAlgorithmError {
    #[error("algorithm not found: {name}")]
    AlgorithmNotFound { name: String },

    #[error("failed to create algorithm: {0}")]
    Internal(#[from] cxx::Exception),
}