Remove T: Debug bound

This commit is contained in:
4JX 2022-08-09 01:48:18 +02:00 committed by Joshua Nelson
parent 3417b41b5b
commit 3841e626ae
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ where
}
}
impl<T: fmt::Debug> fmt::Debug for MaybeHttpsStream<T> {
impl<T> fmt::Debug for MaybeHttpsStream<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
MaybeHttpsStream::Http(..) => f.pad("Http(..)"),