pub trait ITfSourceSingle_Impl: IUnknownImpl {
// Required methods
fn AdviseSingleSink(
&self,
tid: u32,
riid: *const GUID,
punk: Ref<'_, IUnknown>,
) -> Result<(), Error>;
fn UnadviseSingleSink(
&self,
tid: u32,
riid: *const GUID,
) -> Result<(), Error>;
}Required Methods§
fn AdviseSingleSink( &self, tid: u32, riid: *const GUID, punk: Ref<'_, IUnknown>, ) -> Result<(), Error>
fn UnadviseSingleSink(&self, tid: u32, riid: *const GUID) -> Result<(), Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".