pub trait WithDocumentation {
    // Required method
    fn documentation(&self) -> Option<&str>;
}
Expand description

An AST node with documentation.

Required Methods§

source

fn documentation(&self) -> Option<&str>

The documentation string, if defined.

Implementors§