| 27 | /// A URL that redacts its password when formatted. |
| 28 | #[derive(Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)] |
| 29 | pub struct SensitiveUrl(pub Url); |
| 30 | |
| 31 | impl SensitiveUrl { |
| 32 | /// Converts into the underlying URL with the password redacted if it |
no outgoing calls
no test coverage detected