Skip to content

Commit

Permalink
Auto merge of #111134 - GilShoshan94:remove-send-bound-on-error, r=dt…
Browse files Browse the repository at this point in the history
…olnay

Remove unnecessary Send bound

Hi,

While working on a [PR on Tokio](tokio-rs/tokio#5666), I took inspiration from the std channel mpsc and stumbled on a `Send` bound for a `Error` impl.

Tokio's maintainer `@Darksonn` pointed out to me that `Error` used to required the `Send` bound long time ago (here rust-lang/rust#23541).

In the meantime, the `Send` bound `Error` got removed (see rust-lang/rust#21312 and rust-lang/rust#23799).

So here a PR to removed this bound for `SendError<T>`, `TrySendError<T>` and `SendTimeoutError<T>`.
  • Loading branch information
bors committed May 16, 2023
2 parents 2a08e8e + 5b7e49a commit 1ec3e59
Showing 0 changed files with 0 additions and 0 deletions.

0 comments on commit 1ec3e59

Please sign in to comment.