(arg: &str, regex_extractor: &str, regex_replacer: Option<&str>, separator: Option<&str>, expected: &str)
| 189 | |
| 190 | fn trim_start_char(&self, trimmer: Option<String>) -> String { |
| 191 | let trimmer = trimmer.unwrap_or_else(|| " ".to_string()).chars().next().unwrap_or(' '); |
| 192 | self.trim_start_matches(trimmer).to_string() |
| 193 | } |
| 194 | |
| 195 | fn trim_end_char(&self, trimmer: Option<String>) -> String { |
| 196 | let trimmer = trimmer.unwrap_or_else(|| " ".to_string()).chars().next().unwrap_or(' '); |
| 197 | self.trim_end_matches(trimmer).to_string() |
nothing calls this directly
no test coverage detected