Trait HueSaturationComponent

Source
pub trait HueSaturationComponent: PropertyInstanceGetter + PropertyInstanceSetter {
    // Provided methods
    fn get_hue(&self) -> Option<f64> { ... }
    fn set_hue(&self, v: f64) { ... }
    fn get_saturation(&self) -> Option<f64> { ... }
    fn set_saturation(&self, v: f64) { ... }
}

Provided Methods§

Source

fn get_hue(&self) -> Option<f64>

Source

fn set_hue(&self, v: f64)

Source

fn get_saturation(&self) -> Option<f64>

Source

fn set_saturation(&self, v: 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§