Shows the original regular expression.
(&self, f: &mut fmt::Formatter)
| 80 | impl fmt::Display for Regex { |
| 81 | /// Shows the original regular expression. |
| 82 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 83 | write!(f, "{}", self.as_str()) |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | impl fmt::Debug for Regex { |
nothing calls this directly
no test coverage detected