robinhundt
robinhundt
If anyone stumbles over this: the fork at https://github.com/lemonviv/libhcs seemingly contains a fixed version of djcs. I've also started my own fork where I've mainly fixed up some of the...
As a replacement for `error-chain`, [snafu](https://github.com/shepmaster/snafu) could be evaluated. Seems like it cuts down on the boilerplate while being compatible with `std::error::Error`.
Thanks for the answer! Is there a reason to prefer the `split()` (which internally calls `splitBase` on the `KosRecver/Sender`) instead of passing a higher thread count to the `configure()` call...
Yes, I think adding `assert_eq!(cstring.as_bytes().as_ptr(), orig_ptr);` after the call to `cstring.zeroize();` would be a good idea. The backing `Vec` of the `CString` should not reallocate, but if that were the...
Mid to end of July, I'll have time to look at this at this issue as well, if it's not resolved until then.
@Anders429 Well, kind of. As I wrote in the initial OP, I wanted to unify `Sink` and `Stream` in a `Channel` trait. What I wanted was to use `Channel::T` to...
Well, it seems my solution of just referring to the associated type of the super trait does not work completely... :cry: ```rust trait Sink { type Error; fn foo(&mut self)...
I've tried to further reduce the issue. Unfortunately, not even the following simplified code compiles: ```rust trait Sink { type Error; } trait UsingSink { type Item; fn use_sink(ch: &mut...
I ran into a similar issue with the `ws` recipe today. I wanted to use the `ws` combinator with a parser that holds a reference to some local state of...
If you select all occlusions (hold shift and click) and then right click one of the occlusions there is a `group` option. If there is only one group, you effectively...