rusty-dsp/src/error.rs

8 lines
114 B
Rust

use std::fmt::Debug;
#[derive(Clone, PartialEq, Debug)]
pub enum DspError {
WouldBlock,
Error(String),
}