diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-23 14:13:12 -0400 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-24 12:29:54 -0400 |
| commit | 0213053856148379992212b189390f222c6cb460 (patch) | |
| tree | f62e02bf4d8d91cddcc45169ce5afb0c2d4bf5de /src/msg.fbs | |
| parent | b79ce93010d0cc80a9345f646e562326de4588e5 (diff) | |
Remove handlers crate target.
- Add build scripts for Rust flatbuffers.
- Rewrites some reply.cc methods in Rust.
- Changes some struct elements to table in msg.fbs (rust flatbuffers
lacks support currently)
- Renames handlers_test to test_rs.
- This reorg is needed to make progress on the code cache handler.
Diffstat (limited to 'src/msg.fbs')
| -rw-r--r-- | src/msg.fbs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/msg.fbs b/src/msg.fbs index b07da99cf..cb1cf57a9 100644 --- a/src/msg.fbs +++ b/src/msg.fbs @@ -23,7 +23,7 @@ table Base { msg: Any; } -struct Start { +table Start { unused: int8; } @@ -54,22 +54,22 @@ table CodeCache { output_code: string; } -struct Exit { +table Exit { code: int; } -struct TimerStart { +table TimerStart { id: uint; interval: bool; delay: int; } -struct TimerReady { +table TimerReady { id: uint; done: bool; } -struct TimerClear { +table TimerClear { id: uint; } |
