Trait IContextProperties_Impl
pub trait IContextProperties_Impl: IUnknownImpl {
// Required methods
fn Count(&self, plcount: *mut i32) -> Result<()>;
fn GetProperty(&self, name: &BSTR, pproperty: *mut VARIANT) -> Result<()>;
fn EnumNames(&self) -> Result<IEnumNames>;
fn SetProperty(&self, name: &BSTR, property: &VARIANT) -> Result<()>;
fn RemoveProperty(&self, name: &BSTR) -> Result<()>;
}
Required Methods§
fn Count(&self, plcount: *mut i32) -> Result<()>
fn GetProperty(&self, name: &BSTR, pproperty: *mut VARIANT) -> Result<()>
fn EnumNames(&self) -> Result<IEnumNames>
fn SetProperty(&self, name: &BSTR, property: &VARIANT) -> Result<()>
fn RemoveProperty(&self, name: &BSTR) -> 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.