Shows the original regular expression.
(&self, f: &mut fmt::Formatter)
| 139 | impl fmt::Display for Regex { |
| 140 | /// Shows the original regular expression. |
| 141 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 142 | write!(f, "{}", self.as_str()) |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | impl fmt::Debug for Regex { |
nothing calls this directly
no test coverage detected