pub trait IWinMLEvaluationContext_Impl: Sized {
    // Required methods
    fn BindValue(&self, pdescriptor: *const WINML_BINDING_DESC) -> Result<()>;
    fn GetValueByName(&self, name: &PCWSTR) -> Result<*mut WINML_BINDING_DESC>;
    fn Clear(&self) -> Result<()>;
}

Required Methods§

fn BindValue(&self, pdescriptor: *const WINML_BINDING_DESC) -> Result<()>

fn GetValueByName(&self, name: &PCWSTR) -> Result<*mut WINML_BINDING_DESC>

fn Clear(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§