pub trait IMLOperatorKernel_Impl: Sized {
    // Required method
    fn Compute(&self, context: Option<&IMLOperatorKernelContext>) -> Result<()>;
}

Required Methods§

fn Compute(&self, context: Option<&IMLOperatorKernelContext>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§