windows::Win32::UI::Accessibility

Trait IRangeValueProvider_Impl

pub trait IRangeValueProvider_Impl: IUnknownImpl {
    // Required methods
    fn SetValue(&self, val: f64) -> Result<()>;
    fn Value(&self) -> Result<f64>;
    fn IsReadOnly(&self) -> Result<BOOL>;
    fn Maximum(&self) -> Result<f64>;
    fn Minimum(&self) -> Result<f64>;
    fn LargeChange(&self) -> Result<f64>;
    fn SmallChange(&self) -> Result<f64>;
}

Required Methods§

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

fn Value(&self) -> Result<f64>

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

fn Maximum(&self) -> Result<f64>

fn Minimum(&self) -> Result<f64>

fn LargeChange(&self) -> Result<f64>

fn SmallChange(&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.

Implementors§