Trait ITfCreatePropertyStore_Impl
pub trait ITfCreatePropertyStore_Impl: IUnknownImpl {
// Required methods
fn IsStoreSerializable(
&self,
guidprop: *const GUID,
prange: Ref<'_, ITfRange>,
ppropstore: Ref<'_, ITfPropertyStore>,
) -> Result<BOOL>;
fn CreatePropertyStore(
&self,
guidprop: *const GUID,
prange: Ref<'_, ITfRange>,
cb: u32,
pstream: Ref<'_, IStream>,
) -> Result<ITfPropertyStore>;
}
Required Methods§
fn IsStoreSerializable( &self, guidprop: *const GUID, prange: Ref<'_, ITfRange>, ppropstore: Ref<'_, ITfPropertyStore>, ) -> Result<BOOL>
fn CreatePropertyStore( &self, guidprop: *const GUID, prange: Ref<'_, ITfRange>, cb: u32, pstream: Ref<'_, IStream>, ) -> Result<ITfPropertyStore>
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.