| 23 | |
| 24 | #[derive(Debug, Clone)] |
| 25 | pub struct CustomTypePattern { |
| 26 | pub pattern: String, |
| 27 | pub regex_group_count: usize, |
| 28 | } |
| 29 | |
| 30 | /// Characters that have special meaning in regex and need escaping. |
| 31 | const REGEX_SPECIAL: &[char] = &[ |
nothing calls this directly
no outgoing calls
no test coverage detected