Skip to content

Commit

Permalink
Remove Debug constraint for oneshot types (#2666)
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Nov 27, 2022
1 parent be27d72 commit 769632c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions futures-channel/src/oneshot.rs
Expand Up @@ -390,7 +390,7 @@ impl<T> Drop for Sender<T> {
}
}

impl<T: fmt::Debug> fmt::Debug for Sender<T> {
impl<T> fmt::Debug for Sender<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Sender").field("complete", &self.inner.complete).finish()
}
Expand Down Expand Up @@ -481,7 +481,7 @@ impl<T> Drop for Receiver<T> {
}
}

impl<T: fmt::Debug> fmt::Debug for Receiver<T> {
impl<T> fmt::Debug for Receiver<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Receiver").field("complete", &self.inner.complete).finish()
}
Expand Down

0 comments on commit 769632c

Please sign in to comment.