Expand description
Client library for OpenRGB SDK server.
This client is async and requires a tokio runtime to run.
Example
use openrgb::OpenRGB;
use std::error::Error;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
// connect to default server at localhost
let client = OpenRGB::connect().await?;
Ok(())
}
Modules
OpenRGB data types.
Structs
OpenRGB client.
Enums
Errors returned by OpenRGB client.
Statics
Default address used by OpenRGB::connect.
Default protocol version used by OpenRGB client.