pub trait IRdcComparator_Impl: Sized {
    // Required method
    fn Process(
        &self,
        endofinput: BOOL,
        endofoutput: *mut BOOL,
        inputbuffer: *mut RdcBufferPointer,
        outputbuffer: *mut RdcNeedPointer,
        rdc_errorcode: *mut RDC_ErrorCode
    ) -> Result<()>;
}

Required Methods§

fn Process( &self, endofinput: BOOL, endofoutput: *mut BOOL, inputbuffer: *mut RdcBufferPointer, outputbuffer: *mut RdcNeedPointer, rdc_errorcode: *mut RDC_ErrorCode ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§