pub trait IADsPropertyEntry_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Clear(&self) -> Result<()>;
    fn Name(&self) -> Result<BSTR>;
    fn SetName(&self, bstrname: &BSTR) -> Result<()>;
    fn ADsType(&self) -> Result<i32>;
    fn SetADsType(&self, lnadstype: i32) -> Result<()>;
    fn ControlCode(&self) -> Result<i32>;
    fn SetControlCode(&self, lncontrolcode: i32) -> Result<()>;
    fn Values(&self) -> Result<VARIANT>;
    fn SetValues(&self, vvalues: &VARIANT) -> Result<()>;
}

Required Methods§

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

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

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

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

fn SetADsType(&self, lnadstype: i32) -> Result<()>

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

fn SetControlCode(&self, lncontrolcode: i32) -> Result<()>

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

fn SetValues(&self, vvalues: &VARIANT) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§