pub trait IDataModelScriptHostContext_Impl: Sized {
    // Required methods
    fn NotifyScriptChange(
        &self,
        script: Option<&IDataModelScript>,
        changekind: ScriptChangeKind,
    ) -> Result<()>;
    fn GetNamespaceObject(&self) -> Result<IModelObject>;
}

Required Methods§

fn NotifyScriptChange( &self, script: Option<&IDataModelScript>, changekind: ScriptChangeKind, ) -> Result<()>

fn GetNamespaceObject(&self) -> Result<IModelObject>

Object Safety§

This trait is not object safe.

Implementors§