(s: &str)
| 34 | |
| 35 | impl From<&str> for MaskedString { |
| 36 | fn from(s: &str) -> MaskedString { |
| 37 | MaskedString(String::from(s)) |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | #[derive(Debug, Serialize, Deserialize, Copy, Clone, PartialEq, Eq, Default)] |
nothing calls this directly
no test coverage detected