mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
11 lines
213 B
Rust
11 lines
213 B
Rust
use std::fmt::Debug;
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum RogError {
|
|
#[error("unable to parse string to fan mode")]
|
|
ParseFanLevel,
|
|
#[error("mode not supported")]
|
|
NotSupported,
|
|
}
|