libwave/
macros.rs

1
2#[macro_export]
3macro_rules! custom_error {
4    ($i:expr,$e:expr) => { Err(Err::Error(Context::Code($i,ErrorKind::Custom($e))))};
5}