Last active
January 2, 2016 23:41
-
-
Save tailhook/932d4073afc2f3102e07 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
| impl<M: Sized, N:Sized> Response<M, N> { | |
| pub fn ok(machine: M) -> Response<M, N>; | |
| pub fn spawn(machine: M, result: N) -> Response<M, N>; | |
| pub fn done() -> Response<M, N>; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment