pub trait IHTMLPersistDataOM_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn XMLDocument(&self) -> Result<IDispatch>;
    fn getAttribute(&self, name: &BSTR) -> Result<VARIANT>;
    fn setAttribute(&self, name: &BSTR, value: &VARIANT) -> Result<()>;
    fn removeAttribute(&self, name: &BSTR) -> Result<()>;
}

Required Methods§

fn XMLDocument(&self) -> Result<IDispatch>

fn getAttribute(&self, name: &BSTR) -> Result<VARIANT>

fn setAttribute(&self, name: &BSTR, value: &VARIANT) -> Result<()>

fn removeAttribute(&self, name: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§