NGConverter

Trait NGConverter 

Source
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>;
}

Required Methods§

Source

fn convert_in( &self, input: Box<dyn Any + Send>, ) -> Result<Box<dyn Any + Send>, Error>

Source

fn convert_out( &self, input: Box<dyn Any + Send>, ) -> Result<Box<dyn Any + Send>, Error>

Implementors§