| 17 | |
| 18 | #[derive(Debug)] |
| 19 | pub struct ParseKeyError { |
| 20 | /// the string which couldn't be parsed |
| 21 | pub raw: String, |
| 22 | } |
| 23 | |
| 24 | impl ParseKeyError { |
| 25 | pub fn new<S: Into<String>>(s: S) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected