Return the type of this error.
(&self)
| 43 | impl Error { |
| 44 | /// Return the type of this error. |
| 45 | pub fn kind(&self) -> &ErrorKind { |
| 46 | &self.kind |
| 47 | } |
| 48 | |
| 49 | /// The original pattern string in which this error occurred. |
| 50 | /// |
no outgoing calls
no test coverage detected