pub trait ITfContextOwnerServices_Impl: Sized {
    // Required methods
    fn OnLayoutChange(&self) -> Result<()>;
    fn OnStatusChange(&self, dwflags: u32) -> Result<()>;
    fn OnAttributeChange(&self, rguidattribute: *const GUID) -> Result<()>;
    fn Serialize(
        &self,
        pprop: Option<&ITfProperty>,
        prange: Option<&ITfRange>,
        phdr: *mut TF_PERSISTENT_PROPERTY_HEADER_ACP,
        pstream: Option<&IStream>,
    ) -> Result<()>;
    fn Unserialize(
        &self,
        pprop: Option<&ITfProperty>,
        phdr: *const TF_PERSISTENT_PROPERTY_HEADER_ACP,
        pstream: Option<&IStream>,
        ploader: Option<&ITfPersistentPropertyLoaderACP>,
    ) -> Result<()>;
    fn ForceLoadProperty(&self, pprop: Option<&ITfProperty>) -> Result<()>;
    fn CreateRange(&self, acpstart: i32, acpend: i32) -> Result<ITfRangeACP>;
}

Required Methods§

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

fn OnStatusChange(&self, dwflags: u32) -> Result<()>

fn OnAttributeChange(&self, rguidattribute: *const GUID) -> Result<()>

fn Serialize( &self, pprop: Option<&ITfProperty>, prange: Option<&ITfRange>, phdr: *mut TF_PERSISTENT_PROPERTY_HEADER_ACP, pstream: Option<&IStream>, ) -> Result<()>

fn Unserialize( &self, pprop: Option<&ITfProperty>, phdr: *const TF_PERSISTENT_PROPERTY_HEADER_ACP, pstream: Option<&IStream>, ploader: Option<&ITfPersistentPropertyLoaderACP>, ) -> Result<()>

fn ForceLoadProperty(&self, pprop: Option<&ITfProperty>) -> Result<()>

fn CreateRange(&self, acpstart: i32, acpend: i32) -> Result<ITfRangeACP>

Object Safety§

This trait is not object safe.

Implementors§