pub trait IDebugHostExtensibility_Impl: Sized {
    // Required methods
    fn CreateFunctionAlias(
        &self,
        aliasname: &PCWSTR,
        functionobject: Option<&IModelObject>,
    ) -> Result<()>;
    fn DestroyFunctionAlias(&self, aliasname: &PCWSTR) -> Result<()>;
}

Required Methods§

fn CreateFunctionAlias( &self, aliasname: &PCWSTR, functionobject: Option<&IModelObject>, ) -> Result<()>

fn DestroyFunctionAlias(&self, aliasname: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§