(&self)
| 187 | |
| 188 | impl StringOptimized for str { |
| 189 | fn to_optimized_string(&self) -> Cow<'_, str> { |
| 190 | Cow::Borrowed(self) |
| 191 | } |
| 192 | |
| 193 | fn to_string_if_needed(&self) -> Cow<'_, str> { |
| 194 | Cow::Borrowed(self) |
no outgoing calls
no test coverage detected