Created
November 5, 2015 21:57
-
-
Save tailhook/52592b1bbf1536ad3b48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #[derive(PartialEq, Eq, Debug)] | |
| #[must_use] | |
| pub enum Async<M, V> { | |
| Continue(M, V), | |
| Stop, | |
| Timeout(M, SteadyTime), | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment