pub trait IGPMSitesContainer_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn DomainController(&self) -> Result<BSTR>;
    fn Domain(&self) -> Result<BSTR>;
    fn Forest(&self) -> Result<BSTR>;
    fn GetSite(&self, bstrsitename: &BSTR) -> Result<IGPMSOM>;
    fn SearchSites(
        &self,
        pigpmsearchcriteria: Option<&IGPMSearchCriteria>,
    ) -> Result<IGPMSOMCollection>;
}

Required Methods§

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

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

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

fn GetSite(&self, bstrsitename: &BSTR) -> Result<IGPMSOM>

fn SearchSites( &self, pigpmsearchcriteria: Option<&IGPMSearchCriteria>, ) -> Result<IGPMSOMCollection>

Object Safety§

This trait is not object safe.

Implementors§