pub trait IUIAutomationAnnotationPattern_Impl: Sized {
    // Required methods
    fn CurrentAnnotationTypeId(&self) -> Result<UIA_ANNOTATIONTYPE>;
    fn CurrentAnnotationTypeName(&self) -> Result<BSTR>;
    fn CurrentAuthor(&self) -> Result<BSTR>;
    fn CurrentDateTime(&self) -> Result<BSTR>;
    fn CurrentTarget(&self) -> Result<IUIAutomationElement>;
    fn CachedAnnotationTypeId(&self) -> Result<UIA_ANNOTATIONTYPE>;
    fn CachedAnnotationTypeName(&self) -> Result<BSTR>;
    fn CachedAuthor(&self) -> Result<BSTR>;
    fn CachedDateTime(&self) -> Result<BSTR>;
    fn CachedTarget(&self) -> Result<IUIAutomationElement>;
}

Required Methods§

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

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

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

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

fn CurrentTarget(&self) -> Result<IUIAutomationElement>

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

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

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

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

fn CachedTarget(&self) -> Result<IUIAutomationElement>

Object Safety§

This trait is not object safe.

Implementors§