windows::Win32::UI::TextServices

Trait ITfComposition_Impl

pub trait ITfComposition_Impl: IUnknownImpl {
    // Required methods
    fn GetRange(&self) -> Result<ITfRange>;
    fn ShiftStart(
        &self,
        ecwrite: u32,
        pnewstart: Ref<'_, ITfRange>,
    ) -> Result<()>;
    fn ShiftEnd(&self, ecwrite: u32, pnewend: Ref<'_, ITfRange>) -> Result<()>;
    fn EndComposition(&self, ecwrite: u32) -> Result<()>;
}

Required Methods§

fn GetRange(&self) -> Result<ITfRange>

fn ShiftStart(&self, ecwrite: u32, pnewstart: Ref<'_, ITfRange>) -> Result<()>

fn ShiftEnd(&self, ecwrite: u32, pnewend: Ref<'_, ITfRange>) -> Result<()>

fn EndComposition(&self, ecwrite: 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§