Michal 'vorner' Vaner
Michal 'vorner' Vaner
Hello I'm playing with the library and I've received somewhat weird error in one case: ```rust #[derive(Clone, Debug, IntoPyObject, FromPyObject)] struct D2 src/lib.rs:24:11 | 23 | #[derive(Clone, Debug, IntoPyObject, FromPyObject)]...
Hello I'm following the `BUILDING.md` documentation. But when I type the recommended `./gradlew :server:installDist`, I get this error: ``` FAILURE: Build failed with an exception. * What went wrong: A...
Let's say I have a code like this: ```rust thread::scope(|scope| { scope.thread(|| for item in long_vector { do_stuff(item); }); scope.thread(|| for item in another_long_vector { do_stuff(item); }); }); ``` Now,...
Hello I have trouble with using a custom Collector inside a data structure I'm writing ([contrie](https://crates.io/crates/contrie)). I'm not sure if I'm just reading the docs wrong, or if the API...
Hello Reading the https://github.com/rust-lang-nursery/rust-cookbook/issues/501, I think the background thread is a bit suboptimal solution. Working, yes, but not nice. So I wonder if it was possible to have some signal-compatible...
I have a file that is a sequence of serialized structs and I want to read them, one by one. I believe this is quite common situation. This is currently...
It seems when using the [internally tagged enums](https://serde.rs/enum-representations.html), the deserializer gets somewhat confused. If I have this code: ```rust #[derive(Deserialize)] #[serde(tag = "z")] enum Z { A { b: String...
Hello Thanks for #31, I can't wait for a release 😇. Anyway, it would be nice if strings could get similar support for referencing the Bytes buffer too. I don't...
Hello I know prost doesn't build its base abstraction on top of `Read`, but on `Buf`. However, if I have a huge file of length-delimited messages, I'm in a quite...
Hello Let's say I have some rust project and have done `cargo build`. Now I touch an arbitrary file around there, eg `touch x`. If I run `cargo build` now,...