Thomas Eizinger
Thomas Eizinger
When trying to use full-qualified paths for the custom derive, none of the attributes are applied. For example: ```rust #[allow(dead_code)] #[derive(Debug, Eq, PartialEq, strum_macros::EnumDiscriminants)] #[strum_discriminants(name(SplitAttributesBoo), derive(strum_macros::Display))] #[strum_discriminants(derive(strum_macros::EnumIter))] enum SplitAttributes {...
I am not fully sure what is to blame here but I've noticed that on cold boots, `calibre-upgrade.service` delays my user session by more than a minute. ``` ❯ systemd-analyze...
We've ran into a surprising behaviour where `backoff` didn't retry a failed `Future` even though the error was clearly mapped to `backoff::Error::Transient`. After some digging, we discovered that the default...
If you have a struct that uses the new Rust 2018 `dyn` trait syntax, the custom derive panics: ```rust pub trait Foo { } #[derive(DebugStub)] pub struct Bar { #[debug_stub...
Whenever I trigger the upload, every n-th picture seems to fail. On the backend, I can several error logs saying "import already running". It seems to me that the app...
Futures are allowed to panic after they've yielded `Ready`. Would it make sense for an `OptionFuture` to automatically transition to `None` once the inner future returned `Ready`?
We are using `proptest` to generate arbitrary timestamps and we have to limit the actual inputs that are generated to `u32` for this function to not panic. ~Any reason why...
# Description This is to allow general-purpose background work to be performed by implementations. ## Links to any relevant issues https://github.com/libp2p/rust-libp2p/issues/2722 ## Open Questions ## Change checklist - [x] I...
# Description ## Links to any relevant issues #2650 ## Open Questions ## Change checklist - [x] I have performed a self-review of my own code ~- [ ] I...
This issue tracks the redesign of the `StreamMuxer` trait which was originally started in #2648. The primary goals are: - Emitting substreams which implement `AsyncRead` + `AsyncWrite` - Use `&mut...