pub trait NGConverter {
// Required methods
fn convert_in(
&self,
input: Box<dyn Any + Send>,
) -> Result<Box<dyn Any + Send>, Error>;
fn convert_out(
&self,
input: Box<dyn Any + Send>,
) -> Result<Box<dyn Any + Send>, Error>;
}