Trait ISpellingError_Impl
pub trait ISpellingError_Impl: IUnknownImpl {
// Required methods
fn StartIndex(&self) -> Result<u32>;
fn Length(&self) -> Result<u32>;
fn CorrectiveAction(&self) -> Result<CORRECTIVE_ACTION>;
fn Replacement(&self) -> Result<PWSTR>;
}
Required Methods§
fn StartIndex(&self) -> Result<u32>
fn Length(&self) -> Result<u32>
fn CorrectiveAction(&self) -> Result<CORRECTIVE_ACTION>
fn Replacement(&self) -> Result<PWSTR>
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.