Trait ITfContextComposition_Impl
pub trait ITfContextComposition_Impl: IUnknownImpl {
// Required methods
fn StartComposition(
&self,
ecwrite: u32,
pcompositionrange: Ref<'_, ITfRange>,
psink: Ref<'_, ITfCompositionSink>,
) -> Result<ITfComposition>;
fn EnumCompositions(&self) -> Result<IEnumITfCompositionView>;
fn FindComposition(
&self,
ecread: u32,
ptestrange: Ref<'_, ITfRange>,
) -> Result<IEnumITfCompositionView>;
fn TakeOwnership(
&self,
ecwrite: u32,
pcomposition: Ref<'_, ITfCompositionView>,
psink: Ref<'_, ITfCompositionSink>,
) -> Result<ITfComposition>;
}
Required Methods§
fn StartComposition( &self, ecwrite: u32, pcompositionrange: Ref<'_, ITfRange>, psink: Ref<'_, ITfCompositionSink>, ) -> Result<ITfComposition>
fn EnumCompositions(&self) -> Result<IEnumITfCompositionView>
fn FindComposition( &self, ecread: u32, ptestrange: Ref<'_, ITfRange>, ) -> Result<IEnumITfCompositionView>
fn TakeOwnership( &self, ecwrite: u32, pcomposition: Ref<'_, ITfCompositionView>, psink: Ref<'_, ITfCompositionSink>, ) -> Result<ITfComposition>
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.