pub trait IHTMLUserDataOM_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn XMLDocument(&self) -> Result<IDispatch>;
    fn save(&self, strname: &BSTR) -> Result<()>;
    fn load(&self, strname: &BSTR) -> Result<()>;
    fn getAttribute(&self, name: &BSTR) -> Result<VARIANT>;
    fn setAttribute(&self, name: &BSTR, value: &VARIANT) -> Result<()>;
    fn removeAttribute(&self, name: &BSTR) -> Result<()>;
    fn Setexpires(&self, bstr: &BSTR) -> Result<()>;
    fn expires(&self) -> Result<BSTR>;
}

Required Methods§

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

fn save(&self, strname: &BSTR) -> Result<()>

fn load(&self, strname: &BSTR) -> Result<()>

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

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

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

fn Setexpires(&self, bstr: &BSTR) -> Result<()>

fn expires(&self) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§