Whether this is the last line in the docstring or not.
(&self)
| 627 | |
| 628 | /// Whether this is the last line in the docstring or not. |
| 629 | fn is_last(&self) -> bool { |
| 630 | self.next.is_none() |
| 631 | } |
| 632 | } |
| 633 | |
| 634 | /// Represents a single reformatted code line in a docstring. |
no test coverage detected