pub trait ISdoMachine_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Attach(&self, bstrcomputername: &BSTR) -> Result<()>;
    fn GetDictionarySDO(&self) -> Result<IUnknown>;
    fn GetServiceSDO(
        &self,
        edatastore: IASDATASTORE,
        bstrservicename: &BSTR
    ) -> Result<IUnknown>;
    fn GetUserSDO(
        &self,
        edatastore: IASDATASTORE,
        bstrusername: &BSTR
    ) -> Result<IUnknown>;
    fn GetOSType(&self) -> Result<IASOSTYPE>;
    fn GetDomainType(&self) -> Result<IASDOMAINTYPE>;
    fn IsDirectoryAvailable(&self) -> Result<VARIANT_BOOL>;
    fn GetAttachedComputer(&self) -> Result<BSTR>;
    fn GetSDOSchema(&self) -> Result<IUnknown>;
}

Required Methods§

fn Attach(&self, bstrcomputername: &BSTR) -> Result<()>

fn GetDictionarySDO(&self) -> Result<IUnknown>

fn GetServiceSDO( &self, edatastore: IASDATASTORE, bstrservicename: &BSTR ) -> Result<IUnknown>

fn GetUserSDO( &self, edatastore: IASDATASTORE, bstrusername: &BSTR ) -> Result<IUnknown>

fn GetOSType(&self) -> Result<IASOSTYPE>

fn GetDomainType(&self) -> Result<IASDOMAINTYPE>

fn IsDirectoryAvailable(&self) -> Result<VARIANT_BOOL>

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

fn GetSDOSchema(&self) -> Result<IUnknown>

Object Safety§

This trait is not object safe.

Implementors§