pub trait IADsDNWithString_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn StringValue(&self) -> Result<BSTR>;
    fn SetStringValue(&self, bstrstringvalue: &BSTR) -> Result<()>;
    fn DNString(&self) -> Result<BSTR>;
    fn SetDNString(&self, bstrdnstring: &BSTR) -> Result<()>;
}

Required Methods§

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

fn SetStringValue(&self, bstrstringvalue: &BSTR) -> Result<()>

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

fn SetDNString(&self, bstrdnstring: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§