Trait ITfDocumentMgr_Impl
pub trait ITfDocumentMgr_Impl: IUnknownImpl {
// Required methods
fn CreateContext(
&self,
tidowner: u32,
dwflags: u32,
punk: Ref<'_, IUnknown>,
ppic: OutRef<'_, ITfContext>,
pectextstore: *mut u32,
) -> Result<()>;
fn Push(&self, pic: Ref<'_, ITfContext>) -> Result<()>;
fn Pop(&self, dwflags: u32) -> Result<()>;
fn GetTop(&self) -> Result<ITfContext>;
fn GetBase(&self) -> Result<ITfContext>;
fn EnumContexts(&self) -> Result<IEnumTfContexts>;
}
Required Methods§
fn CreateContext( &self, tidowner: u32, dwflags: u32, punk: Ref<'_, IUnknown>, ppic: OutRef<'_, ITfContext>, pectextstore: *mut u32, ) -> Result<()>
fn Push(&self, pic: Ref<'_, ITfContext>) -> Result<()>
fn Pop(&self, dwflags: u32) -> Result<()>
fn GetTop(&self) -> Result<ITfContext>
fn GetBase(&self) -> Result<ITfContext>
fn EnumContexts(&self) -> Result<IEnumTfContexts>
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.