pub trait IDataModelScript_Impl: Sized {
    // Required methods
    fn GetName(&self) -> Result<BSTR>;
    fn Rename(&self, scriptname: &PCWSTR) -> Result<()>;
    fn Populate(&self, contentstream: Option<&IStream>) -> Result<()>;
    fn Execute(&self, client: Option<&IDataModelScriptClient>) -> Result<()>;
    fn Unlink(&self) -> Result<()>;
    fn IsInvocable(&self) -> Result<bool>;
    fn InvokeMain(&self, client: Option<&IDataModelScriptClient>) -> Result<()>;
}

Required Methods§

fn GetName(&self) -> Result<BSTR>

fn Rename(&self, scriptname: &PCWSTR) -> Result<()>

fn Populate(&self, contentstream: Option<&IStream>) -> Result<()>

fn Execute(&self, client: Option<&IDataModelScriptClient>) -> Result<()>

fn IsInvocable(&self) -> Result<bool>

fn InvokeMain(&self, client: Option<&IDataModelScriptClient>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§