moved to finish_non_exhaustive in Debug impl for ClientWithMiddleware (#27)

tower
Christian Haynes 2022-01-24 06:24:34 -05:00 committed by GitHub
parent d3fe5acf02
commit 8b8d22cafd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ impl fmt::Debug for ClientWithMiddleware {
// skipping middleware_stack field for now
f.debug_struct("ClientWithMiddleware")
.field("inner", &self.inner)
.finish()
.finish_non_exhaustive()
}
}