Skip to content

Commit 1ad022d

Browse files
committed
Add cannot_be_a_base field to Url's Debug representation (fixes #693)
1 parent 6fd1e87 commit 1ad022d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

url/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2390,6 +2390,7 @@ impl fmt::Debug for Url {
23902390
formatter
23912391
.debug_struct("Url")
23922392
.field("scheme", &self.scheme())
2393+
.field("cannot_be_a_base", &self.cannot_be_a_base())
23932394
.field("username", &self.username())
23942395
.field("password", &self.password())
23952396
.field("host", &self.host())

0 commit comments

Comments
 (0)