Module consts Copy item path Source ALLOW_ATTR An attribute to allow code that would normally result in a warning. ALLOW_ATTR_ATTR An attribute to allow additional attributes on an item. DEPRECATED_ATTR An attribute to define an item as deprecated. Usage of these items will result in a warning,
unless the using crate is marked with their feature active. FEATURE_ATTR An attribute to allow usage of a feature under a statement. FMT_SKIP_ATTR An attribute that can be used to make the formatter ignore the formatting of a statement or an
item, and keep the user defined formatting. IMPLICIT_PRECEDENCE_ATTR An attribute to define the order of implicit arguments. INLINE_ATTR An attribute to mark a function as a function that should be inlined. INTERNAL_ATTR An attribute to define an item as internal. Usage of these items will result in an error, unless
the usage is marked with their feature active. MUST_USE_ATTR An attribute to define a type as a type that must be used, or a function as a function that its
return value must be used. PATH_ATTR An attribute to override a submodule’s source file path. PHANTOM_ATTR An attribute to define a type as a phantom type, phantom types cannot be created at run time and
are typically used for meta-programming. STARKNET_INTERFACE_ATTR An attribute for the declaration of a Starknet interface. UNSTABLE_ATTR An attribute to define an item as unstable. Usage of these items will result in a warning,
unless the using crate is marked with their feature active. UNUSED An attribute to represent the unused lint-group, which represents all the unused lints.
An argument to the allow attribute that represents a lint-group which suppresses all unused
lints. UNUSED_IMPORTS An argument to the allow attribute that suppresses warnings for unused imports.
Also included in the UNUSED lint group. UNUSED_VARIABLES An argument to the allow attribute that suppresses warnings for unused variables.
Also included in the UNUSED lint group.