luser / rust-gdb-remote-protocol

A Rust crate implementing the GDB Remote Serial Protocol
Apache License 2.0
33 stars 13 forks source link

remove Query enum #37

Open tromey opened 6 years ago

tromey commented 6 years ago

I don't think there's a reason to have Query be a separate enum. They are really just commands.

luser commented 6 years ago

I think the only thing I was aiming for there was having the query parser be able to return only Query values, but it might not really provide any extra value, and practically everything is a query in this protocol anyway...