Add cannot_be_a_base field to Url's Debug representation (fixes #693)

This commit is contained in:
Dirkjan Ochtman 2021-04-12 22:01:13 +02:00
parent 6fd1e87de6
commit 1ad022d85f

View file

@ -2390,6 +2390,7 @@ impl fmt::Debug for Url {
formatter
.debug_struct("Url")
.field("scheme", &self.scheme())
.field("cannot_be_a_base", &self.cannot_be_a_base())
.field("username", &self.username())
.field("password", &self.password())
.field("host", &self.host())