Felix Obenhuber
                                            Felix Obenhuber
                                        
                                    I have the need for getting a string representation of a `Message` containing package and message name. Looking at `prost_derive` I think I understood that it's not possible to obtain...
Sadly I had to add `main` to the doc text in order to use `#[macro_use]` for `serde_derive`. I didn't want to add the example to the other helper examples because...
@sunng87 I stumbled across the `clone` as well. The point is that [serde_json::from_value](https://docs.serde.rs/serde_json/fn.from_value.html) consumes a `Value` and [ContextJson::value](https://docs.rs/handlebars/1.0.0-beta.1/handlebars/struct.ContextJson.html#method.value) just borrows one that cannot be moved. If you have an idea...
Sounds great, but I think calling `clone` cannot be avoided since the parameters are just borrowed in the helper and `serde_json::from_value` requires `DeserializeOwned`. Means that ```rust pub fn try_into(self) ->...
> While investigating, I also found that container processes also seem to fall under unknown. Yet another category of issues I guess. Yes. `bandwhich` can't resolve across network namespaces (on...
Hi. I [played](https://github.com/flxo/bandwhich/commit/66c80aeda0bde2b474be0da657cfa65e24fdf97c) with aggregation code a little bit and there is beside `/proc/net/[tcp(6)udp(6)]` also `/proc//net/[tcp(6), udp(6)]`. What makes me think is that the key to the map of open...
Hello. There's some CI failure I'm unable to reproduce. Furthermore the test `idle_connection_triggers_pings_on_time`doesn't use the v5 async client at all. Are the tests known to be flakey?
I'm putting this on hold until #825 is fixed and merged.
Implemented the processing of requests and incoming frames in batches for v5. Minor updates here and there. The v4 and v5 clients share a horrible big amount of code. I...
Hello. Can I get a comment on this PR? I'd like to incorporate findings before applying the pattern used in `v5` in `v3`. Thanks.