Module macros
Source - __item π
- cfg_if π
- A macro for defining #[cfg] if-else statements.
- const_fn π
- A nonpublic function that is const as long as
libc_const_extern_fn
is enabled. - deprecated_mach π
- e π
- Implement
Clone
and Copy
for an enum, as well as Debug
, Eq
, Hash
, and
PartialEq
if the extra_traits
feature is enabled. - f π
- Define an
unsafe
function that is const as long as libc_const_extern_fn
is enabled. - missing π
- Specify that an enum should have no traits that arenβt specified in the macro
invocation, i.e. no
Clone
or Copy
. - prelude π
- Create an internal crate prelude with
core
reexports and common types. - s π
- Implement
Clone
and Copy
for a struct, as well as Debug
, Eq
, Hash
, and
PartialEq
if the extra_traits
feature is enabled. - s_no_extra_traits π
- Implement
Clone
and Copy
for a struct with no extra_traits
feature. - s_paren π
- Implement
Clone
and Copy
for a tuple struct, as well as Debug
, Eq
, Hash
,
and PartialEq
if the extra_traits
feature is enabled. - safe_f π
- Define a safe function that is const as long as
libc_const_extern_fn
is enabled.