pub trait IADsContainer_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Count(&self) -> Result<i32>;
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Filter(&self) -> Result<VARIANT>;
    fn SetFilter(&self, var: &VARIANT) -> Result<()>;
    fn Hints(&self) -> Result<VARIANT>;
    fn SetHints(&self, vhints: &VARIANT) -> Result<()>;
    fn GetObject(
        &self,
        classname: &BSTR,
        relativename: &BSTR
    ) -> Result<IDispatch>;
    fn Create(&self, classname: &BSTR, relativename: &BSTR) -> Result<IDispatch>;
    fn Delete(
        &self,
        bstrclassname: &BSTR,
        bstrrelativename: &BSTR
    ) -> Result<()>;
    fn CopyHere(&self, sourcename: &BSTR, newname: &BSTR) -> Result<IDispatch>;
    fn MoveHere(&self, sourcename: &BSTR, newname: &BSTR) -> Result<IDispatch>;
}

Required Methods§

fn Count(&self) -> Result<i32>

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

fn Filter(&self) -> Result<VARIANT>

fn SetFilter(&self, var: &VARIANT) -> Result<()>

fn Hints(&self) -> Result<VARIANT>

fn SetHints(&self, vhints: &VARIANT) -> Result<()>

fn GetObject(&self, classname: &BSTR, relativename: &BSTR) -> Result<IDispatch>

fn Create(&self, classname: &BSTR, relativename: &BSTR) -> Result<IDispatch>

fn Delete(&self, bstrclassname: &BSTR, bstrrelativename: &BSTR) -> Result<()>

fn CopyHere(&self, sourcename: &BSTR, newname: &BSTR) -> Result<IDispatch>

fn MoveHere(&self, sourcename: &BSTR, newname: &BSTR) -> Result<IDispatch>

Object Safety§

This trait is not object safe.

Implementors§