Skip to content

Instantly share code, notes, and snippets.

@adamhjk
Created June 17, 2015 23:07
Show Gist options
  • Save adamhjk/1db0745dde15f3240272 to your computer and use it in GitHub Desktop.
Save adamhjk/1db0745dde15f3240272 to your computer and use it in GitHub Desktop.
#[derive(Debug, Clone, Copy)]
pub enum State {
Init,
Configure,
Starting,
Running,
Finished,
}
pub struct Default {
state: State,
delay: Option<u32>,
package: Package,
supervisor_thread: Option<thread::JoinGuard<..>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment