pub trait ITfCreatePropertyStore_Impl: Sized {
    // Required methods
    fn IsStoreSerializable(
        &self,
        guidprop: *const GUID,
        prange: Option<&ITfRange>,
        ppropstore: Option<&ITfPropertyStore>,
    ) -> Result<BOOL>;
    fn CreatePropertyStore(
        &self,
        guidprop: *const GUID,
        prange: Option<&ITfRange>,
        cb: u32,
        pstream: Option<&IStream>,
    ) -> Result<ITfPropertyStore>;
}

Required Methods§

fn IsStoreSerializable( &self, guidprop: *const GUID, prange: Option<&ITfRange>, ppropstore: Option<&ITfPropertyStore>, ) -> Result<BOOL>

fn CreatePropertyStore( &self, guidprop: *const GUID, prange: Option<&ITfRange>, cb: u32, pstream: Option<&IStream>, ) -> Result<ITfPropertyStore>

Object Safety§

This trait is not object safe.

Implementors§