pub trait WithAttributes {
    // Required method
    fn attributes(&self) -> &[Attribute];
}
Expand description

An AST node with attributes.

Required Methods§

source

fn attributes(&self) -> &[Attribute]

The attributes.

Implementors§