pub trait IComHandlerAction_Impl: Sized + IAction_Impl {
    // Required methods
    fn ClassId(&self, pclsid: *mut BSTR) -> Result<()>;
    fn SetClassId(&self, clsid: &BSTR) -> Result<()>;
    fn Data(&self, pdata: *mut BSTR) -> Result<()>;
    fn SetData(&self, data: &BSTR) -> Result<()>;
}

Required Methods§

fn ClassId(&self, pclsid: *mut BSTR) -> Result<()>

fn SetClassId(&self, clsid: &BSTR) -> Result<()>

fn Data(&self, pdata: *mut BSTR) -> Result<()>

fn SetData(&self, data: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§