pub trait IUIAutomationValuePattern_Impl: Sized {
    // Required methods
    fn SetValue(&self, val: &BSTR) -> Result<()>;
    fn CurrentValue(&self) -> Result<BSTR>;
    fn CurrentIsReadOnly(&self) -> Result<BOOL>;
    fn CachedValue(&self) -> Result<BSTR>;
    fn CachedIsReadOnly(&self) -> Result<BOOL>;
}

Required Methods§

fn SetValue(&self, val: &BSTR) -> Result<()>

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§