pub trait IAnnotationProvider_Impl: Sized {
    // Required methods
    fn AnnotationTypeId(&self) -> Result<UIA_ANNOTATIONTYPE>;
    fn AnnotationTypeName(&self) -> Result<BSTR>;
    fn Author(&self) -> Result<BSTR>;
    fn DateTime(&self) -> Result<BSTR>;
    fn Target(&self) -> Result<IRawElementProviderSimple>;
}

Required Methods§

fn AnnotationTypeId(&self) -> Result<UIA_ANNOTATIONTYPE>

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

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

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

fn Target(&self) -> Result<IRawElementProviderSimple>

Object Safety§

This trait is not object safe.

Implementors§