You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The behavior before #596 was best for anyone not working very closely with the Urls. Showing parsed components just makes things unreadable, it's the difference between
They are the same struct, but the first one has a custom implementation of Debug. In a bigger struct with several of these, it makes a whole lot of difference. Since I have several structs that use Url, I used derive_more::Debug but in some cases helper structs are needed because of lifetimes.
This is a lot of unnecessary trouble, I just want to ensure that the Urls are valid before I pass them along, I don't even use them. What are your thoughts on a feature that debugs Url as it is displayed, would such a PR be accepted?
The text was updated successfully, but these errors were encountered:
The behavior before #596 was best for anyone not working very closely with the Urls. Showing parsed components just makes things unreadable, it's the difference between
and
They are the same struct, but the first one has a custom implementation of Debug. In a bigger struct with several of these, it makes a whole lot of difference. Since I have several structs that use
Url
, I usedderive_more::Debug
but in some cases helper structs are needed because of lifetimes.This is a lot of unnecessary trouble, I just want to ensure that the
Url
s are valid before I pass them along, I don't even use them. What are your thoughts on a feature that debugsUrl
as it is displayed, would such a PR be accepted?The text was updated successfully, but these errors were encountered: