pub trait IInkWordList_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn AddWord(&self, newword: &BSTR) -> Result<()>;
    fn RemoveWord(&self, removeword: &BSTR) -> Result<()>;
    fn Merge(&self, mergewordlist: Option<&IInkWordList>) -> Result<()>;
}

Required Methods§

fn AddWord(&self, newword: &BSTR) -> Result<()>

fn RemoveWord(&self, removeword: &BSTR) -> Result<()>

fn Merge(&self, mergewordlist: Option<&IInkWordList>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§