send_wrapper icon indicating copy to clipboard operation
send_wrapper copied to clipboard

Results 7 send_wrapper issues
Sort by recently updated
recently updated
newest added

Added transpose operations for `SendWrapper` and `SendWrapper` so that one can match on the inner Result or Option from any thread. Similar to `transpose()` on `Result` and `Option`

Hi, would you mind adding a changelog entry for 0.6, indicating what are the breaking changes. There also is no 0.6.0 release tag on github. cheers.

The calling to `std::thread::current()` clones an Arc. It is a bit heavy in a most likely single-threaded case. This PR caches the current thread id in a TLS. It should...

Relax bounds such that `SendWrapper` can be used with `T: ?Sized`

Three commits in this PR: 1. Fix a couple of unused code warnings. 2. Add a benchmark for `SendWrapper::deref`. 3. Improve that benchmark by caching the current thread ID in...

Follow-up to https://github.com/thk1/send_wrapper/pull/15. If this is landed by itself, CI will be red because of the warnings in `master`, but #15 fixes those warnings. (In retrospect it would've made more...

Add an optional feature to store and print the location of `SendWrapper::new` during panics, to help debugging.