pub trait IADs_Impl: Sized + IDispatch_Impl {
Show 13 methods // Required methods fn Name(&self) -> Result<BSTR>; fn Class(&self) -> Result<BSTR>; fn GUID(&self) -> Result<BSTR>; fn ADsPath(&self) -> Result<BSTR>; fn Parent(&self) -> Result<BSTR>; fn Schema(&self) -> Result<BSTR>; fn GetInfo(&self) -> Result<()>; fn SetInfo(&self) -> Result<()>; fn Get(&self, bstrname: &BSTR) -> Result<VARIANT>; fn Put(&self, bstrname: &BSTR, vprop: &VARIANT) -> Result<()>; fn GetEx(&self, bstrname: &BSTR) -> Result<VARIANT>; fn PutEx( &self, lncontrolcode: i32, bstrname: &BSTR, vprop: &VARIANT ) -> Result<()>; fn GetInfoEx(&self, vproperties: &VARIANT, lnreserved: i32) -> Result<()>;
}

Required Methods§

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

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

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

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

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

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

fn GetInfo(&self) -> Result<()>

fn SetInfo(&self) -> Result<()>

fn Get(&self, bstrname: &BSTR) -> Result<VARIANT>

fn Put(&self, bstrname: &BSTR, vprop: &VARIANT) -> Result<()>

fn GetEx(&self, bstrname: &BSTR) -> Result<VARIANT>

fn PutEx( &self, lncontrolcode: i32, bstrname: &BSTR, vprop: &VARIANT ) -> Result<()>

fn GetInfoEx(&self, vproperties: &VARIANT, lnreserved: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§