Trait IWordSink_Impl
pub trait IWordSink_Impl: IUnknownImpl {
// Required methods
fn PutWord(
&self,
cwc: u32,
pwcinbuf: &PCWSTR,
cwcsrclen: u32,
cwcsrcpos: u32,
) -> Result<()>;
fn PutAltWord(
&self,
cwc: u32,
pwcinbuf: &PCWSTR,
cwcsrclen: u32,
cwcsrcpos: u32,
) -> Result<()>;
fn StartAltPhrase(&self) -> Result<()>;
fn EndAltPhrase(&self) -> Result<()>;
fn PutBreak(&self, breaktype: WORDREP_BREAK_TYPE) -> Result<()>;
}
Required Methods§
fn PutWord( &self, cwc: u32, pwcinbuf: &PCWSTR, cwcsrclen: u32, cwcsrcpos: u32, ) -> Result<()>
fn PutAltWord( &self, cwc: u32, pwcinbuf: &PCWSTR, cwcsrclen: u32, cwcsrcpos: u32, ) -> Result<()>
fn StartAltPhrase(&self) -> Result<()>
fn EndAltPhrase(&self) -> Result<()>
fn PutBreak(&self, breaktype: WORDREP_BREAK_TYPE) -> Result<()>
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.