(detail: impl Into<String>)
| 26 | |
| 27 | impl ProceduralError { |
| 28 | pub fn tokenize(detail: impl Into<String>) -> Self { |
| 29 | Self::Tokenize { |
| 30 | detail: detail.into(), |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | pub fn parse(detail: impl Into<String>) -> Self { |
| 35 | Self::Parse { |
no outgoing calls
no test coverage detected