| 10 | /// Used to mask sensitive strings when logging |
| 11 | #[derive(Serialize, Deserialize, Default, PartialEq, Eq, Clone)] |
| 12 | pub struct MaskedString(pub String); |
| 13 | |
| 14 | impl Debug for MaskedString { |
| 15 | fn fmt(&self, f: &mut Formatter<'_>) -> std::result::Result<(), std::fmt::Error> { |