capnproto-rust icon indicating copy to clipboard operation
capnproto-rust copied to clipboard

Cap'n Proto for Rust

Results 101 capnproto-rust issues
Sort by recently updated
recently updated
newest added

I am converting a series of capnp messages into a columnar format (arrow specifically). One of the challenges with unions is non-active union fields. I recursively create a vector of...

Hello, Thank you for this project! Also, apologies if this is a duplicate - I've found similar questions but I'm not quite sure if we're solving the same problem. So...

I have a c++.capnp schema file and when I build my project the generated code includes references to `crate::c++_capnp`. Is it possible to change the name in the rust build...

Hi, is it possible to use a rust capnp-rpc client with a java server? I tried using the calculator example, but I get an exception on the java server (complaining...

i see some bespoke traits which are similar to standard library traits, I was hoping you could comment. For example, there are `ToU16` and `FromU16` traits, which seem like they...

fixes #87. One question though: this currently works well for a struct implementing a single interface. If a single struct implements multiple interfaces, there will be multiple `this_client` implementations, one...

Hello, I have been using this library for a project and ran into a potential issue, and I am unsure if this is a problem with the library or with...

Capnproto interfaces are translated to traits with methods taking `&mut self`. So, from my understanding, there's an event loop taking the ownership of `self`, which receives RPC calls and then...

Presently when one defines a capnproto RPC, one gets generated traits like this: ```rust pub trait Server { fn do_stuff(&mut self, _: DoStuffParams, _: DoStuffResults) -> ::capnp::capability::Promise { ::capnp::capability::Promise::err(::capnp::Error::unimplemented("method handle::Server::do_stuff...