The purpose of annotations is to tell the compiler extra details about structures, statements, or functions. All annotations follow the same syntax:
Annotations usually appear between keyword like
struct @no_padding MyData { ... }
fn @stdcall MyFunction() { ... }
See other chapters such as Structs and Enums for specific annotations.
User defined annotations?