Trait IUIAutomationValuePattern_Impl
pub trait IUIAutomationValuePattern_Impl: IUnknownImpl {
// 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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.