pub trait IADsPropertyValue2_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn GetObjectProperty(
        &self,
        lnadstype: *mut i32,
        pvprop: *mut VARIANT
    ) -> Result<()>;
    fn PutObjectProperty(&self, lnadstype: i32, vprop: &VARIANT) -> Result<()>;
}

Required Methods§

fn GetObjectProperty( &self, lnadstype: *mut i32, pvprop: *mut VARIANT ) -> Result<()>

fn PutObjectProperty(&self, lnadstype: i32, vprop: &VARIANT) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§