windows::Win32::Media::Speech

Trait ISpResourceManager_Impl

pub trait ISpResourceManager_Impl: IServiceProvider_Impl {
    // Required methods
    fn SetObject(
        &self,
        guidserviceid: *const GUID,
        punkobject: Ref<'_, IUnknown>,
    ) -> Result<()>;
    fn GetObject(
        &self,
        guidserviceid: *const GUID,
        objectclsid: *const GUID,
        objectiid: *const GUID,
        freleasewhenlastexternalrefreleased: BOOL,
        ppobject: *mut *mut c_void,
    ) -> Result<()>;
}

Required Methods§

fn SetObject( &self, guidserviceid: *const GUID, punkobject: Ref<'_, IUnknown>, ) -> Result<()>

fn GetObject( &self, guidserviceid: *const GUID, objectclsid: *const GUID, objectiid: *const GUID, freleasewhenlastexternalrefreleased: BOOL, ppobject: *mut *mut c_void, ) -> 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.

Implementors§