Closed ghost closed 9 years ago
Looks good! I just have a few nitpicks, as discussed in my other comments.
I went ahead and merged your branch that had the private inner module. Thanks!
Oops, Sorry! Looks like I took too long to do the last fixes! vaelden/capnpc-rust@2eed1ce81ac7696f0c5b639aea9aba19e5acc602 should make the necessary changes to remove unused imports and make TYPE_ID accessible for groups.
No worries! I've just merged that commit in too.
These patches should allow the use of Capn'Proto type ids from Rust code.
For a Capn'Proto struct, it declares a
const TYPE_ID: u64
in the module defining the struct, and theReader
andBuilder
both implement theHasTypeId
trait defining atype_id(_ : Option<Self>)
function (no better way to call it before UFCS).For an enum, it only makes the enum implement the
HasTypeId
trait.For an interface, it declare a
const INTERFACE_ID: u64
in the module defining the interface, and the Client implements theHasTypeId
traitThis pull request requires the HasTypeId trait in the runtime library.