Rust logo
Rust 1.79.0-nightly
4d570eea0

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: