use std::fmt::{Debug, Display, Formatter};
#[derive(Copy, Clone)]
pub struct NoMetaError;
impl Debug for NoMetaError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
f.debug_struct("NoMetaError").finish()
}
}
impl Display for NoMetaError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
f.debug_struct("NoMetaError").finish()
}
}
impl std::error::Error for NoMetaError {}