From 1ad022d85f15b75424b7c622b9085ccfb479ab6b Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 12 Apr 2021 22:01:13 +0200 Subject: [PATCH] Add cannot_be_a_base field to Url's Debug representation (fixes #693) --- url/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/url/src/lib.rs b/url/src/lib.rs index 7e90e3fa8..424e36151 100644 --- a/url/src/lib.rs +++ b/url/src/lib.rs @@ -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())