You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
326 B
20 lines
326 B
4 years ago
|
use super::*;
|
||
|
|
||
|
/// Command to interrupt an `Imouto` worker
|
||
|
#[derive(Debug, PartialEq,Eq,Hash)]
|
||
|
pub enum Command {
|
||
|
/// Ungraceful shutdown
|
||
|
Abort,
|
||
|
/// Graceful shutdown
|
||
|
Shutdown,
|
||
|
|
||
|
/// Update interval
|
||
|
Reset(interval::Time),
|
||
|
|
||
|
/// Full reload
|
||
|
Reload,
|
||
|
|
||
|
/// Debug informations
|
||
|
Dump,
|
||
|
}
|