pub trait ISpellingError_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§