Files
asusctl/rog-core/src/error.rs
2020-05-23 14:21:16 +12:00

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,
}