pub trait IADsOU_Impl: Sized + IADs_Impl {
Show 14 methods // Required methods fn Description(&self) -> Result<BSTR>; fn SetDescription(&self, bstrdescription: &BSTR) -> Result<()>; fn LocalityName(&self) -> Result<BSTR>; fn SetLocalityName(&self, bstrlocalityname: &BSTR) -> Result<()>; fn PostalAddress(&self) -> Result<BSTR>; fn SetPostalAddress(&self, bstrpostaladdress: &BSTR) -> Result<()>; fn TelephoneNumber(&self) -> Result<BSTR>; fn SetTelephoneNumber(&self, bstrtelephonenumber: &BSTR) -> Result<()>; fn FaxNumber(&self) -> Result<BSTR>; fn SetFaxNumber(&self, bstrfaxnumber: &BSTR) -> Result<()>; fn SeeAlso(&self) -> Result<VARIANT>; fn SetSeeAlso(&self, vseealso: &VARIANT) -> Result<()>; fn BusinessCategory(&self) -> Result<BSTR>; fn SetBusinessCategory(&self, bstrbusinesscategory: &BSTR) -> Result<()>;
}

Required Methods§

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

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

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

fn SetLocalityName(&self, bstrlocalityname: &BSTR) -> Result<()>

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

fn SetPostalAddress(&self, bstrpostaladdress: &BSTR) -> Result<()>

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

fn SetTelephoneNumber(&self, bstrtelephonenumber: &BSTR) -> Result<()>

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

fn SetFaxNumber(&self, bstrfaxnumber: &BSTR) -> Result<()>

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

fn SetSeeAlso(&self, vseealso: &VARIANT) -> Result<()>

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

fn SetBusinessCategory(&self, bstrbusinesscategory: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§