windows::Win32::System::TransactionServer

Trait IComponentUtil_Impl

pub trait IComponentUtil_Impl: IDispatch_Impl {
    // Required methods
    fn InstallComponent(
        &self,
        bstrdllfile: &BSTR,
        bstrtypelibfile: &BSTR,
        bstrproxystubdllfile: &BSTR,
    ) -> Result<()>;
    fn ImportComponent(&self, bstrclsid: &BSTR) -> Result<()>;
    fn ImportComponentByName(&self, bstrprogid: &BSTR) -> Result<()>;
    fn GetCLSIDs(
        &self,
        bstrdllfile: &BSTR,
        bstrtypelibfile: &BSTR,
        aclsids: *mut *mut SAFEARRAY,
    ) -> Result<()>;
}

Required Methods§

fn InstallComponent( &self, bstrdllfile: &BSTR, bstrtypelibfile: &BSTR, bstrproxystubdllfile: &BSTR, ) -> Result<()>

fn ImportComponent(&self, bstrclsid: &BSTR) -> Result<()>

fn ImportComponentByName(&self, bstrprogid: &BSTR) -> Result<()>

fn GetCLSIDs( &self, bstrdllfile: &BSTR, bstrtypelibfile: &BSTR, aclsids: *mut *mut SAFEARRAY, ) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§