bspeice

Results 18 comments of bspeice

I'm also having this issue; two more test cases in case it may be helpful: ```c++ void ScheduleTest::testEomKeepsStart() { Schedule s1 = Schedule( Date(3, August, 2021), Date(31, July, 2024), Period(6,...

I'm finishing some clean-up on the tests; let's merge those at the same time, as it will make things much easier to develop in parallel.

No worries, and that's a phenomenal question. Calls to instance calculation use `'read` and `'stream` the same as calls to `read()`; when calculating instances, it's required that you pass in...

Progress continues! We now generate struct bodies correctly, and (almost) all the tests are compiling (and failing). @GreyCat - as mentioned earlier, if you still want to merge, I'm OK...

OK, tests are compiling, and basic parsing code is generating. Tests are still failing, but at least we have things to test *against*. @CWood1, if you're still around, I could...

@XVilka - You're right that it would need rebasing, but I don't have the time or desire to continue managing this. If the goal is handling binary parsing in Rust,...

I'm trying to get an owned reference so I can send this across a thread, and I've copied the above code as follows: ```rust pub struct OwnedReader where T :...

Yes after a slight modification to `OwnedReader`: ```rust pub struct OwnedReader where T : for { marker: ::std::marker::PhantomData, message: ::capnp::message::Reader, } impl OwnedReader where T: for { pub fn get...

Brilliant. Got this working using standard `::capnp::serialize::read_message()`, greatly appreciate the help. Any chance this could get added to the default library? I'd be happy to write up something on how...

Working on tests for recently merged code. Is there a way of creating `address_book::Owned` from static information (i.e. like in the example)? I'm currently using `serialize::read_message` to get back a...