(&self, trimmer: Option<String>)
| 30 | fn is_empty_or_whitespaces(&self) -> bool { |
| 31 | self.as_ref().map_or(true, |s| s.is_empty_or_whitespaces()) |
| 32 | } |
| 33 | |
| 34 | fn split_get_first(&self, splitter: Option<String>) -> String { |
| 35 | self.as_ref().map_or(Default::default(), |s| s.split_get_first(splitter)) |
| 36 | } |
| 37 |
no outgoing calls
no test coverage detected