Trait IUIAutomationRangeValuePattern_Impl
pub trait IUIAutomationRangeValuePattern_Impl: IUnknownImpl {
Show 13 methods
// Required methods
fn SetValue(&self, val: f64) -> Result<()>;
fn CurrentValue(&self) -> Result<f64>;
fn CurrentIsReadOnly(&self) -> Result<BOOL>;
fn CurrentMaximum(&self) -> Result<f64>;
fn CurrentMinimum(&self) -> Result<f64>;
fn CurrentLargeChange(&self) -> Result<f64>;
fn CurrentSmallChange(&self) -> Result<f64>;
fn CachedValue(&self) -> Result<f64>;
fn CachedIsReadOnly(&self) -> Result<BOOL>;
fn CachedMaximum(&self) -> Result<f64>;
fn CachedMinimum(&self) -> Result<f64>;
fn CachedLargeChange(&self) -> Result<f64>;
fn CachedSmallChange(&self) -> Result<f64>;
}
Required Methods§
fn SetValue(&self, val: f64) -> Result<()>
fn CurrentValue(&self) -> Result<f64>
fn CurrentIsReadOnly(&self) -> Result<BOOL>
fn CurrentMaximum(&self) -> Result<f64>
fn CurrentMinimum(&self) -> Result<f64>
fn CurrentLargeChange(&self) -> Result<f64>
fn CurrentSmallChange(&self) -> Result<f64>
fn CachedValue(&self) -> Result<f64>
fn CachedIsReadOnly(&self) -> Result<BOOL>
fn CachedMaximum(&self) -> Result<f64>
fn CachedMinimum(&self) -> Result<f64>
fn CachedLargeChange(&self) -> Result<f64>
fn CachedSmallChange(&self) -> Result<f64>
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.