pub trait Node_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Name(&self) -> Result<BSTR>;
    fn get_Property(&self, propertyname: &BSTR) -> Result<BSTR>;
    fn Bookmark(&self) -> Result<BSTR>;
    fn IsScopeNode(&self) -> Result<BOOL>;
    fn Nodetype(&self) -> Result<BSTR>;
}

Required Methods§

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

fn get_Property(&self, propertyname: &BSTR) -> Result<BSTR>

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

fn IsScopeNode(&self) -> Result<BOOL>

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

Object Safety§

This trait is not object safe.

Implementors§