1 2 3 4 5 6 7 8
use thiserror::Error; #[derive(Debug, Error)] pub enum AudioError { #[error("Decoder finished")] DecoderFinished, #[error("IO error: {0}")] Io(#[from] std::io::Error), }