pub trait DocCommentsOwner<'a>: AstNode<'a> {
    fn doc_comments(self) -> AstChildren<'a, Comment<'a>>  { ... }
    fn doc_comment_text(self) -> String { ... }
}

Provided Methods

Returns the textual content of a doc comment block as a single string. That is, strips leading /// and joins lines

Implementors