forked from NG-SD-Plugins/PowerTools
15 lines
250 B
Rust
15 lines
250 B
Rust
|
use super::SettingError;
|
||
|
|
||
|
pub trait OnSet {
|
||
|
fn on_set(&mut self) -> Result<(), SettingError>;
|
||
|
}
|
||
|
|
||
|
pub trait OnResume {
|
||
|
fn on_resume(&self) -> Result<(), SettingError>;
|
||
|
}
|
||
|
|
||
|
pub trait SettingsRange {
|
||
|
fn max() -> Self;
|
||
|
fn min() -> Self;
|
||
|
}
|