babycat 0.0.14

An audio decoding and manipulation library, with bindings for C, Python, and WebAssembly.
use crate::backend::WaveformResult;

#[repr(C)]
#[derive(Clone, Debug)]
pub struct WaveformNamedResult {
    pub name: String,
    pub result: WaveformResult,
}