rusty-dsp/src/error.rs

12 lines
196 B
Rust
Raw Permalink Normal View History

2020-06-03 21:54:48 +02:00
use std::fmt::Debug;
#[derive(Clone, PartialEq, Debug)]
pub enum DspError {
WouldBlock,
Error(String),
}
2020-06-23 22:22:45 +02:00
pub fn new_error(msg: &str) -> DspError {
DspError::Error(msg.to_string())
}