Michal 'vorner' Vaner
Michal 'vorner' Vaner
Hello Let's say I want to have a function I hand a buffer with a packet and it pulls it apart layer by layer and then returns the payload no...
Hello I'd like to have a way to change all the configuration of my application at runtime. That would also mean being able changing configuration of sentry and I didn't...
If I have a string with mime type, I can have it parsed using the `FromStr` trait. But that one takes a `&str` and allocates a new copy of the...
I'm using bytes 1.0.1. It seems the `Take::chunks_vectored` method doesn't follow the contract from the trait about providing all the chunks that can fit. From [documentation](https://docs.rs/bytes/1.0.1/bytes/trait.Buf.html#method.chunks_vectored). > If chunk_vectored does...
Specialize the `Take`s implementation of the method so it can return as many chunks as possible, instead of the default 1. Implements #474. (I'm not marking it „Closes“, as there's...
The documentation of the [BufMut::writer](https://docs.rs/bytes/1.0.1/bytes/buf/trait.BufMut.html#method.writer) claims that the returned writer will never fail: > This function returns a new value which implements Write by adapting the Write trait functions to...
Hello It seems that by using `tokio-executor` under the hood, the behaviour changed in backwards-incompatible way. If inside one future I create a new core and try to run something...
It would be cool to be able to use something else than `mio` for the backend. The motivation is, if you have a GUI application with GTK, you would use...
I'm opening this to keep track, not that it'd need fixing right away. As discussed in #149, there's an `usize` counter increased every time a new loop is created. This...
I've noticed in #4 that the waiting for signals on unix is more heavy-weight than it probably deserves. The `signal-hook::iterator::Signals` is the most comfortable interface for application usage, as it...