Trait IADsPropertyEntry_Impl
pub trait IADsPropertyEntry_Impl: 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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.