pub trait IADsGroup_Impl: Sized + IADs_Impl {
    // Required methods
    fn Description(&self) -> Result<BSTR>;
    fn SetDescription(&self, bstrdescription: &BSTR) -> Result<()>;
    fn Members(&self) -> Result<IADsMembers>;
    fn IsMember(&self, bstrmember: &BSTR) -> Result<VARIANT_BOOL>;
    fn Add(&self, bstrnewitem: &BSTR) -> Result<()>;
    fn Remove(&self, bstritemtoberemoved: &BSTR) -> Result<()>;
}

Required Methods§

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

fn SetDescription(&self, bstrdescription: &BSTR) -> Result<()>

fn Members(&self) -> Result<IADsMembers>

fn IsMember(&self, bstrmember: &BSTR) -> Result<VARIANT_BOOL>

fn Add(&self, bstrnewitem: &BSTR) -> Result<()>

fn Remove(&self, bstritemtoberemoved: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§