pub trait IPrintSchemaElement_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn XmlNode(&self) -> Result<IUnknown>;
    fn Name(&self) -> Result<BSTR>;
    fn NamespaceUri(&self) -> Result<BSTR>;
}

Required Methods§

fn XmlNode(&self) -> Result<IUnknown>

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

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

Object Safety§

This trait is not object safe.

Implementors§