Borrow this input docstring line as an output docstring line.
(&self)
| 618 | impl<'src> InputDocstringLine<'src> { |
| 619 | /// Borrow this input docstring line as an output docstring line. |
| 620 | fn as_output(&self) -> OutputDocstringLine<'src> { |
| 621 | OutputDocstringLine { |
| 622 | line: Cow::Borrowed(self.line), |
| 623 | offset: self.offset, |
| 624 | is_last: self.is_last(), |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | /// Whether this is the last line in the docstring or not. |
| 629 | fn is_last(&self) -> bool { |
no test coverage detected