(mut self, end_line: u32)
| 206 | /// Set the end line for a range. |
| 207 | #[must_use] |
| 208 | pub fn with_end_line(mut self, end_line: u32) -> Self { |
| 209 | self.end_line = Some(end_line); |
| 210 | self |
| 211 | } |
| 212 | |
| 213 | /// Set the category. |
| 214 | #[must_use] |
no outgoing calls