summaryrefslogtreecommitdiffstats
path: root/src/constants.rs
Commit message (Collapse)AuthorAgeFilesLines
* callbacks wip (non-working)closuresJesse Luehrs2014-09-041-1/+1
| | | | | | | | | | | | <doy> wouldn't that mean i couldn't use closures then? <eddyb> yupp <doy> ): <eddyb> they just can't do what you want really well yet need to wait for the "closures that are quantified over lifetimes" thing mentioned here https://github.com/rust-lang/rfcs/blob/master/active/0044-closures.md to be implemented
* start adding callback supportJesse Luehrs2014-09-041-1/+1
| | | | | | | the lifetime parameters on the callback closure parameters really should be able to be inferred (since they aren't being used for anything at all), but apparently rust can't handle that yet. hopefully they can go away in the future.
* no need to separate commands and replies as typesJesse Luehrs2014-09-041-91/+74
| | | | it just clutters things
* more useful Show implementationsJesse Luehrs2014-09-031-2/+61
|
* it's simpler if these are just constantsJesse Luehrs2014-09-031-175/+168
| | | | it's not like we'll ever care about exhaustive matching here
* we don't care if the constants are unused for nowJesse Luehrs2014-09-031-0/+2
|
* start working on message parsingJesse Luehrs2014-09-031-0/+310