displays_physical_linux_sys 0.1.0

Rust library for querying and updating Linux backlight and LED brightness devices via sysfs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(missing_docs)]
#![doc = include_str!("../docs/crate.md")]

mod error;
mod manager;
mod types;

pub use error::{ApplyError, QueryError};
pub use manager::{normalize_brightness_update, PhysicalDisplayManagerLinuxSys};
pub use types::{
    BrightnessUpdate, Device, DeviceClass, DeviceIdentifier, DeviceMetadata, DeviceState,
    DeviceUpdate,
};