Trait IFunctionDiscoveryProviderFactory_Impl
pub trait IFunctionDiscoveryProviderFactory_Impl: IUnknownImpl {
// Required methods
fn CreatePropertyStore(&self) -> Result<IPropertyStore>;
fn CreateInstance(
&self,
pszsubcategory: &PCWSTR,
pszproviderinstanceidentity: &PCWSTR,
iproviderinstancecontext: isize,
pipropertystore: Ref<'_, IPropertyStore>,
pifunctiondiscoveryprovider: Ref<'_, IFunctionDiscoveryProvider>,
) -> Result<IFunctionInstance>;
fn CreateFunctionInstanceCollection(
&self,
) -> Result<IFunctionInstanceCollection>;
}
Required Methods§
fn CreatePropertyStore(&self) -> Result<IPropertyStore>
fn CreateInstance( &self, pszsubcategory: &PCWSTR, pszproviderinstanceidentity: &PCWSTR, iproviderinstancecontext: isize, pipropertystore: Ref<'_, IPropertyStore>, pifunctiondiscoveryprovider: Ref<'_, IFunctionDiscoveryProvider>, ) -> Result<IFunctionInstance>
fn CreateFunctionInstanceCollection( &self, ) -> Result<IFunctionInstanceCollection>
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.