pub trait IXMLDOMProcessingInstruction_Impl: Sized + IXMLDOMNode_Impl {
    // Required methods
    fn target(&self) -> Result<BSTR>;
    fn data(&self) -> Result<BSTR>;
    fn Setdata(&self, value: &BSTR) -> Result<()>;
}

Required Methods§

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

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

fn Setdata(&self, value: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§