pub trait IRangeValueProvider_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§