Trait IWordBreakerConfig_Impl
pub trait IWordBreakerConfig_Impl: IUnknownImpl {
// Required methods
fn SetLocaleInfo(&self, dwcodepageid: u32, lcid: u32) -> Result<()>;
fn GetLocaleInfo(
&self,
pdwcodepageid: *mut u32,
plcid: *mut u32,
) -> Result<()>;
fn SetBreakWordType(&self, dwbreakwordtype: u32) -> Result<()>;
fn GetBreakWordType(&self, pdwbreakwordtype: *mut u32) -> Result<()>;
fn SetControlInfo(&self, grfbreakflags: u32, dwreserved: u32) -> Result<()>;
fn GetControlInfo(
&self,
pgrfbreakflags: *mut u32,
pdwreserved: *mut u32,
) -> Result<()>;
fn LoadExternalBreakerData(
&self,
pstream: Ref<'_, IStream>,
dwextdatatype: u32,
) -> Result<()>;
fn SetWordStemmer(
&self,
rclsid: *const GUID,
pstemmer: Ref<'_, IStemmer>,
) -> Result<()>;
fn GetWordStemmer(&self) -> Result<IStemmer>;
}
Required Methods§
fn SetLocaleInfo(&self, dwcodepageid: u32, lcid: u32) -> Result<()>
fn GetLocaleInfo(&self, pdwcodepageid: *mut u32, plcid: *mut u32) -> Result<()>
fn SetBreakWordType(&self, dwbreakwordtype: u32) -> Result<()>
fn GetBreakWordType(&self, pdwbreakwordtype: *mut u32) -> Result<()>
fn SetControlInfo(&self, grfbreakflags: u32, dwreserved: u32) -> Result<()>
fn GetControlInfo( &self, pgrfbreakflags: *mut u32, pdwreserved: *mut u32, ) -> Result<()>
fn LoadExternalBreakerData( &self, pstream: Ref<'_, IStream>, dwextdatatype: u32, ) -> Result<()>
fn SetWordStemmer( &self, rclsid: *const GUID, pstemmer: Ref<'_, IStemmer>, ) -> Result<()>
fn GetWordStemmer(&self) -> Result<IStemmer>
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.