pub trait IDMLOperatorInitializer_Impl: Sized + IDMLDispatchable_Impl {
    // Required method
    fn Reset(
        &self,
        operatorcount: u32,
        operators: *const Option<IDMLCompiledOperator>
    ) -> Result<()>;
}

Required Methods§

fn Reset( &self, operatorcount: u32, operators: *const Option<IDMLCompiledOperator> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§