(mut self, function: impl Into<String>)
| 199 | /// Set the function name. |
| 200 | #[must_use] |
| 201 | pub fn with_function(mut self, function: impl Into<String>) -> Self { |
| 202 | self.function = Some(function.into()); |
| 203 | self |
| 204 | } |
| 205 | |
| 206 | /// Set the end line for a range. |
| 207 | #[must_use] |
no outgoing calls