windows::Win32::NetworkManagement::NetworkPolicyServer

Trait ISdoMachine_Impl

pub trait ISdoMachine_Impl: 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>

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§