Ian Smith
Ian Smith
Is there any interest in moving the issue this PR addresses forward or should I close this PR?
I happened to run into the same issue today. I wanted to be able to implement `Encode` and `Decode` for a library type but I am unable to do so...
Not sure if it completely solves your problem, but it was brought to my attention that upstream crates can depend on `sqlx` without selecting a runtime, and as long as...
I'll be doing work to this effect on branch [`feature/async`](https://github.com/Cassy343/flashmap/tree/feature/async). It'll probably take a bit to add sufficient tests.
Please note that all of the following is just my opinion. This is a request for comments, so I'm commenting from my perspective. Similar to @truppelito, my initial reaction was...
I think I made the mistake of starting the comparison of helper methods to language features. `for x in impl_into_iter` is a language construct. `impl_iter.for_each(|_| ..)` is a library construct....
> I would honestly prefer I can see why you do prefer that, however I actually prefer the former. I'd like to ask, why is ```rust context .client .create_some_request(tonic::Request::new(some_request)) .await?...
Closes #509 In talking with some other developers some concern was presented over whether or not a write to `LOGGER` could be re-ordered before a relaxed atomic load despite that...
The initialization of the logger wasn't really of concern here, the `SeqCst` load in the `logger` function was. I did a couple benches and didn't see a significant change in...
That ordering should not be reduced to relaxed. Even if we properly document it, if one thread initializes the logger and another concurrently tries to access the logger, then that's...