Trait IDynamicKeyProviderConcept_Impl
pub trait IDynamicKeyProviderConcept_Impl: IUnknownImpl {
// Required methods
fn GetKey(
&self,
contextobject: Ref<'_, IModelObject>,
key: &PCWSTR,
keyvalue: OutRef<'_, IModelObject>,
metadata: OutRef<'_, IKeyStore>,
haskey: *mut bool,
) -> Result<()>;
fn SetKey(
&self,
contextobject: Ref<'_, IModelObject>,
key: &PCWSTR,
keyvalue: Ref<'_, IModelObject>,
metadata: Ref<'_, IKeyStore>,
) -> Result<()>;
fn EnumerateKeys(
&self,
contextobject: Ref<'_, IModelObject>,
) -> Result<IKeyEnumerator>;
}
Required Methods§
fn GetKey( &self, contextobject: Ref<'_, IModelObject>, key: &PCWSTR, keyvalue: OutRef<'_, IModelObject>, metadata: OutRef<'_, IKeyStore>, haskey: *mut bool, ) -> Result<()>
fn SetKey( &self, contextobject: Ref<'_, IModelObject>, key: &PCWSTR, keyvalue: Ref<'_, IModelObject>, metadata: Ref<'_, IKeyStore>, ) -> Result<()>
fn EnumerateKeys( &self, contextobject: Ref<'_, IModelObject>, ) -> Result<IKeyEnumerator>
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.