Trait IModelPropertyAccessor_Impl
pub trait IModelPropertyAccessor_Impl: IUnknownImpl {
// Required methods
fn GetValue(
&self,
key: &PCWSTR,
contextobject: Ref<'_, IModelObject>,
) -> Result<IModelObject>;
fn SetValue(
&self,
key: &PCWSTR,
contextobject: Ref<'_, IModelObject>,
value: Ref<'_, IModelObject>,
) -> Result<()>;
}
Required Methods§
fn GetValue( &self, key: &PCWSTR, contextobject: Ref<'_, IModelObject>, ) -> Result<IModelObject>
fn SetValue( &self, key: &PCWSTR, contextobject: Ref<'_, IModelObject>, value: Ref<'_, IModelObject>, ) -> 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.