Rust logo
Rust 1.76.0
07dca489a

Attributes

There is a new edition of the book and this is an old link.

Any item declaration may have an attribute applied to it.

// A function marked as a unit test
#[test]
fn test_foo() {
    /* ... */
}
Run

Here are the relevant sections in the new and old books: