1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum SubstreamMacroError { 5 #[error("unknown input type")] 6 UnknownInputType(String), 7}