windows::Win32::UI::TextServices

Trait IEnumTfFunctionProviders_Impl

pub trait IEnumTfFunctionProviders_Impl: IUnknownImpl {
    // Required methods
    fn Clone(&self) -> Result<IEnumTfFunctionProviders>;
    fn Next(
        &self,
        ulcount: u32,
        ppcmdobj: OutRef<'_, ITfFunctionProvider>,
        pcfetch: *mut u32,
    ) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Skip(&self, ulcount: u32) -> Result<()>;
}

Required Methods§

fn Clone(&self) -> Result<IEnumTfFunctionProviders>

fn Next( &self, ulcount: u32, ppcmdobj: OutRef<'_, ITfFunctionProvider>, pcfetch: *mut u32, ) -> Result<()>

fn Reset(&self) -> Result<()>

fn Skip(&self, ulcount: u32) -> 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§