pub trait BrightnessExt {
    fn brightness(&self) -> Brightness;
    fn set_brightness(&self, brightness: Brightness) -> Result<()>;
}
Expand description

An extension for Window to get/set the brightness.

Required Methods§

Returns the brightness of the window.

Sets the brightness of the Window.

Errors

Returns Err if setting a brightness is unsupported.

Implementors§